nixos-configuration/hosts/droid/stuff.nix
Vinzenz Schroeter 44b17a0648 add phone config
2024-11-24 18:41:45 +01:00

24 lines
413 B
Nix

{
pkgs,
...
}:
{
environment.packages = with pkgs; [
nano
hostname
zsh
openssh
which
curl
];
# Backup etc files instead of failing to activate generation if a file already exists in /etc
environment.etcBackupExtension = ".bak";
system.stateVersion = "24.05";
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
time.timeZone = "Europe/Berlin";
}