nixos-configuration/modules/_common/nixpkgs.nix
2023-09-17 15:20:18 +02:00

21 lines
344 B
Nix

{...}: {
config = {
nixpkgs.config.allowUnfree = true;
system = {
stateVersion = "22.11";
# enable auto updates
autoUpgrade = {
enable = true;
dates = "weekly";
};
};
nix.gc = {
automatic = true;
dates = "monthly";
options = "--delete-older-than 30d";
};
};
}