nixos/clients/quadraticserver/restart.nix
2025-11-27 11:12:27 -05:00

10 lines
192 B
Nix

{
systemd.timers.reboot = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*-*-* 02:00:00";
Persistent = true;
Unit = "reboot.target";
};
};
}