nix-configs/modules/common/nix.nix

26 lines
602 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;
};
2024-08-20 12:25:27 -04:00
nixpkgs.overlays = [
(import ../../overlays/recyclarr.nix)
2024-08-20 21:49:04 -04:00
(import ../../overlays/zwave-js-ui.nix)
2024-08-20 12:25:27 -04:00
];
2024-04-27 22:10:36 -04:00
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
};
}