os/hosts/pie/wake-droppie.nix
Benjamin Bädorf 8603106bb7
All checks were successful
continuous-integration/drone/push Build is passing
fix: fix user to run droppie awaker on pie
2023-09-16 22:00:50 +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"
];
};
}