fix(system.autoUpgrade): Use correct URI
This commit is contained in:
parent
aaef0b57ee
commit
4b452f8818
|
@ -1,7 +1,9 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
system.autoUpgrade.enable = true;
|
system.autoUpgrade = {
|
||||||
system.autoUpgrade.flake = "git:git.newtype.fr/newtype/newtype-org-configurations";
|
enable = true;
|
||||||
system.autoUpgrade.flags = [ "--option" "accept-flake-config" "true" ];
|
flake = "git+https://git.newtype.fr/newtype/newtype-org-configurations";
|
||||||
|
flags = [ "--option" "accept-flake-config" "true" ];
|
||||||
|
};
|
||||||
|
|
||||||
# add a random jitter so not all machines reboot at the same time.
|
# add a random jitter so not all machines reboot at the same time.
|
||||||
systemd.timers.auto-reboot.timerConfig.RandomizedDelaySec = 60 * 20;
|
systemd.timers.auto-reboot.timerConfig.RandomizedDelaySec = 60 * 20;
|
||||||
|
|
Loading…
Reference in a new issue