infra/modules/darwin/common/reboot.nix
2023-07-30 22:28:20 +00:00

13 lines
280 B
Nix

{
# reboot every sunday between 00:00 and 06:00
launchd.daemons.reboot = {
command = ''/sbin/shutdown -r "+$(( $RANDOM % ( 6 * 60 ) ))"'';
serviceConfig.StartCalendarInterval = [
{
Hour = 0;
Minute = 0;
Weekday = 0;
}
];
};
}