chore: rename nix-on-droid configuration

This commit is contained in:
Swarsel 2024-12-05 03:14:22 +01:00
parent d9e74a5a06
commit 3a95254b88
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 45 additions and 5 deletions

View file

@ -0,0 +1,40 @@
{ pkgs, ... }: {
environment = {
packages = with pkgs; [
vim
git
openssh
# toybox
dig
man
gnupg
];
etcBackupExtension = ".bak";
extraOutputsToInstall = [
"doc"
"info"
"devdoc"
];
motd = null;
};
android-integration = {
termux-open.enable = true;
xdg-open.enable = true;
termux-open-url.enable = true;
termux-reload-settings.enable = true;
termux-setup-storage.enable = true;
};
# Backup etc files instead of failing to activate generation if a file already exists in /etc
# Read the changelog before changing this value
system.stateVersion = "23.05";
# Set up nix for flakes
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}