nixos-configuration/modules/nixpkgs.nix
Vinzenz Schroeter 1b7989336e convoluted solution looking for a problem
unified modules structure
2023-09-24 10:15:53 +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";
};
};
}