infra/roles/auto-upgrade.nix
zowoq d72b6aba92 roles/auto-upgrade: set tarball-ttl
sometimes upgrades are skipped until the next hour
2023-04-29 17:00:41 +10:00

7 lines
282 B
Nix

{
system.autoUpgrade.enable = true;
system.autoUpgrade.flake = "github:nix-community/infra";
system.autoUpgrade.allowReboot = true;
system.autoUpgrade.dates = "hourly";
system.autoUpgrade.flags = [ "--option" "accept-flake-config" "true" "--option" "tarball-ttl" "0" ];
}