main
nix 20 lines 427 Bytes
Raw
1 {
2 # reboot every sunday between 00:00 and 03:00
3 launchd.daemons.reboot = {
4 script = ''
5 date
6 /sbin/shutdown -r "+$(( $RANDOM % ( 3 * 60 ) ))"
7 '';
8 serviceConfig = {
9 StartCalendarInterval = [
10 {
11 Hour = 0;
12 Minute = 0;
13 Weekday = 0;
14 }
15 ];
16 StandardErrorPath = "/var/log/reboot.log";
17 StandardOutPath = "/var/log/reboot.log";
18 };
19 };
20 }