diff --git a/hosts/FredOS-Gaming.nix b/hosts/FredOS-Gaming.nix index 4b509c5..e11721e 100644 --- a/hosts/FredOS-Gaming.nix +++ b/hosts/FredOS-Gaming.nix @@ -17,7 +17,17 @@ config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") { pkgs: with pkgs; [ kdePackages.breeze ]; + }; }; + system.autoUpgrade = { + enable = true; + dates = "daily"; + persistent = true; # Run on next boot if the scheduled time was missed + allowReboot = false; + flags = [ + "--upgrade" + "--option" "tarball-ttl" "0" + ]; }; };