modules/nixos/common/reboot: increase timer frequency

This commit is contained in:
zowoq 2024-05-13 10:35:54 +10:00
parent 654f4190df
commit 4352772fc8

View file

@ -18,9 +18,9 @@
systemctl reboot
fi
'';
startAt = "0/3:00";
startAt = "hourly";
};
systemd.timers.reboot-after-update = {
timerConfig.RandomizedDelaySec = "3h";
timerConfig.RandomizedDelaySec = "2h";
};
}