From d72b6aba926fc8d151497c73ae77fbfc8d72a778 Mon Sep 17 00:00:00 2001
From: zowoq <59103226+zowoq@users.noreply.github.com>
Date: Sat, 29 Apr 2023 17:00:35 +1000
Subject: [PATCH] roles/auto-upgrade: set tarball-ttl

sometimes upgrades are skipped until the next hour
---
 roles/auto-upgrade.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/auto-upgrade.nix b/roles/auto-upgrade.nix
index ace045c..62fca4b 100644
--- a/roles/auto-upgrade.nix
+++ b/roles/auto-upgrade.nix
@@ -3,5 +3,5 @@
   system.autoUpgrade.flake = "github:nix-community/infra";
   system.autoUpgrade.allowReboot = true;
   system.autoUpgrade.dates = "hourly";
-  system.autoUpgrade.flags = [ "--option" "accept-flake-config" "true" ];
+  system.autoUpgrade.flags = [ "--option" "accept-flake-config" "true" "--option" "tarball-ttl" "0" ];
 }