mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-19 02:50:12 +01:00
24 lines
413 B
Nix
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";
|
||
|
}
|