Update FredOS-Gaming.nix

This commit is contained in:
ediblerope 2025-12-03 14:56:34 +00:00 committed by GitHub
parent 52d16dbd1d
commit cd9c21ab52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"
];
};
};