nixos-configs/nixosModules/autoupdate.nix

17 lines
287 B
Nix
Raw Normal View History

2025-09-13 15:25:54 +02:00
{
nix = {
optimise.automatic = true;
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
};
system.autoUpgrade = {
enable = true;
dates = "daily";
2025-09-13 17:49:17 +02:00
# do not forget to set `flake` when using this module!
2025-09-13 15:25:54 +02:00
};
}