nix/modules/system/misc/default.nix

8 lines
217 B
Nix
Raw Normal View History

2024-10-05 00:31:24 +02:00
{pkgs, ...}: {
2024-08-31 17:52:32 +02:00
nix.settings.experimental-features = ["nix-command" "flakes"];
time.timeZone = "Europe/Zurich";
system.stateVersion = "23.11";
2024-10-04 22:32:42 +02:00
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
2024-08-31 17:52:32 +02:00
}