Files
stormwind-nixfiles/auto-upgrade.nix

14 lines
257 B
Nix
Raw Normal View History

2025-01-13 01:30:15 +01:00
{ 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";
};
}