fix: use lowercase hw-address for droppie
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Benjamin Bädorf 2023-09-29 18:21:08 +02:00
parent 8217330abf
commit 5063d04708
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@
reservations = [ reservations = [
{ {
hostname = "droppie.local"; hostname = "droppie.local";
hw-address = "08:F1:EA:97:0F:0C"; hw-address = "08:f1:ea:97:0f:0c";
ip-address = "192.168.178.3"; ip-address = "192.168.178.3";
} }
{ {

View file

@ -3,7 +3,7 @@
services.cron = { services.cron = {
enable = true; enable = true;
systemCronJobs = [ systemCronJobs = [
"30 1 * * * root ${pkgs.wakeonlan}/bin/wakeonlan 08:F1:EA:97:0F:0C" "30 1 * * * root ${pkgs.wakeonlan}/bin/wakeonlan 08:f1:ea:97:0f:0c"
]; ];
}; };
} }