1
0

Compare commits

..

No commits in common. "9fbf607541f305d0cae933d3a4521ae67f94fe15" and "e3ee6f0e753cab95985bd895ea4ec3aae2587d5e" have entirely different histories.

2 changed files with 4 additions and 15 deletions

View File

@ -186,11 +186,11 @@
},
"nixos-hardware": {
"locked": {
"lastModified": 1701598471,
"narHash": "sha256-kHdJ2qc4qKeMTzUIHEcP41ah/dBIhCgvWgrjllt2G78=",
"lastModified": 1701250978,
"narHash": "sha256-ohu3cz4edjpGxs2qUTgbs0WrnewOX4crnUJNEB6Jox4=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "a89745edd5f657e2e5be5ed1bea86725ca78d92e",
"rev": "8772491ed75f150f02552c60694e1beff9f46013",
"type": "github"
},
"original": {

View File

@ -19,22 +19,11 @@ 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"}";
};
};
systemd.timers.nixfiles-system-auto-upgrade = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*-*-* 05:37:00";
RandomizedDelaySec = "2h";
};
after = [ "network-online.target" ];
startAt = "*-*-* 06:47:00";
};
};
}