os/hosts/pie/wake-droppie.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
165 B
Nix
Raw Normal View History

2024-08-18 22:22:59 +00:00
{pkgs, ...}: {
2023-09-11 21:51:13 +00:00
services.cron = {
enable = true;
2023-09-11 21:51:13 +00:00
systemCronJobs = [
"30 1 * * * root ${pkgs.wakeonlan}/bin/wakeonlan 08:f1:ea:97:0f:0c"
2023-09-11 21:51:13 +00:00
];
};
}