Update system to stable state

This commit is contained in:
2026-02-11 14:11:02 +01:00
parent 0392c91cbe
commit afb8aef90f
4 changed files with 15 additions and 3 deletions

12
cron-schedule.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
# Enable cron service
services.cron = {
enable = true;
systemCronJobs = [
"0 0 * * * root reboot"
];
};
}