add auto reboot

This commit is contained in:
Henry Hiles 2025-11-11 16:51:11 -05:00
commit b6d66dda50
No known key found for this signature in database
2 changed files with 12 additions and 4 deletions

View file

@ -0,0 +1,11 @@
{
systemd.timers.reboot = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*-*-* 02:00:00";
Persistent = true;
Unit = "reboot.target";
};
};
}