1
0
Fork 0

Update from master 2023-12-04T02:03+00:00

This commit is contained in:
Flake Update Bot 2023-12-04 03:03:06 +01:00
commit a24b4930df
1 changed files with 12 additions and 1 deletions

View File

@ -19,11 +19,22 @@ in
};
config = mkIf cfg.enable {
systemd.services.nixfiles-system-auto-upgrade = {
# Make sure this unit does not stop themself while upgrading
restartIfChanged = false;
unitConfig.X-StopOnRemoval = false;
serviceConfig = {
Type = "oneshot";
ExecStart = pkgs.nixfiles-system-upgrade + "/bin/nixfiles-system-upgrade --no-confirm${optionalString cfg.allowReboot " --allow-reboot"}";
};
startAt = "*-*-* 06:47:00";
};
systemd.timers.nixfiles-system-auto-upgrade = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*-*-* 05:37:00";
RandomizedDelaySec = "2h";
};
after = [ "network-online.target" ];
};
};
}