Files
stormwind-nixfiles/auto-upgrade.nix
2025-01-13 01:30:25 +01:00

14 lines
257 B
Nix

{ config, ... }:
{
# Rebuild once a day to automatically apply security patches
system.autoUpgrade.enable = true;
nix.optimise.automatic = true;
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 30d";
};
}