nix-configs/modules/common/nix.nix

22 lines
488 B
Nix
Raw Normal View History

2024-07-09 21:14:07 -04:00
{ ... }: {
2024-05-03 00:26:20 -04:00
programs.git.enable = true;
2024-05-31 00:27:06 -04:00
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 7d";
};
2024-07-30 09:11:17 -04:00
nix = {
settings = { experimental-features = [ "nix-command" "flakes" ]; };
2024-04-27 22:10:36 -04:00
optimise.automatic = true;
};
system.autoUpgrade = {
enable = true;
flake = "git+https://git.icanttype.org/cdombroski/nix-configs.git";
allowReboot = true;
2024-05-30 20:39:54 -04:00
rebootWindow = {
lower = "02:00";
upper = "06:00";
};
2024-04-27 22:10:36 -04:00
};
}