os/hosts/pie/wake-droppie.nix

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

10 lines
167 B
Nix
Raw Normal View History

2023-09-11 21:51:13 +00:00
{ pkgs, ... }:
{
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
];
};
}