13 lines
157 B
Nix
13 lines
157 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
# Enable cron service
|
|
services.cron = {
|
|
enable = true;
|
|
systemCronJobs = [
|
|
"0 0 * * * root reboot"
|
|
];
|
|
};
|
|
|
|
}
|