nixos-configuration/nixosModules/autoupdate.nix
2025-09-13 17:58:56 +02:00

16 lines
287 B
Nix

{
nix = {
optimise.automatic = true;
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
};
system.autoUpgrade = {
enable = true;
dates = "daily";
# do not forget to set `flake` when using this module!
};
}