os/hosts/pie/wake-droppie.nix
Benjamin Bädorf 5063d04708
All checks were successful
continuous-integration/drone/push Build is passing
fix: use lowercase hw-address for droppie
2023-09-29 18:21:08 +02:00

10 lines
167 B
Nix

{ pkgs, ... }:
{
services.cron = {
enable = true;
systemCronJobs = [
"30 1 * * * root ${pkgs.wakeonlan}/bin/wakeonlan 08:f1:ea:97:0f:0c"
];
};
}