nixos-configuration/modules/_common/nixpkgs.nix

21 lines
344 B
Nix
Raw Normal View History

2023-09-09 15:44:15 +02:00
{...}: {
config = {
2023-09-11 21:00:02 +02:00
nixpkgs.config.allowUnfree = true;
2023-09-09 15:44:15 +02:00
system = {
stateVersion = "22.11";
# enable auto updates
2023-09-17 15:20:18 +02:00
autoUpgrade = {
enable = true;
dates = "weekly";
};
2023-09-09 15:44:15 +02:00
};
nix.gc = {
automatic = true;
2023-09-17 15:20:18 +02:00
dates = "monthly";
options = "--delete-older-than 30d";
2023-09-09 15:44:15 +02:00
};
};
}