10 lines
192 B
Nix
10 lines
192 B
Nix
{
|
|
systemd.timers.reboot = {
|
|
wantedBy = [ "timers.target" ];
|
|
timerConfig = {
|
|
OnCalendar = "*-*-* 02:00:00";
|
|
Persistent = true;
|
|
Unit = "reboot.target";
|
|
};
|
|
};
|
|
}
|