From 5063d047088f376e252d90fe6ac1629558230568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Fri, 29 Sep 2023 18:21:08 +0200 Subject: [PATCH] fix: use lowercase hw-address for droppie --- hosts/pie/dhcpd.nix | 2 +- hosts/pie/wake-droppie.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/pie/dhcpd.nix b/hosts/pie/dhcpd.nix index c863aed1..bdc3471c 100644 --- a/hosts/pie/dhcpd.nix +++ b/hosts/pie/dhcpd.nix @@ -48,7 +48,7 @@ reservations = [ { 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"; } { diff --git a/hosts/pie/wake-droppie.nix b/hosts/pie/wake-droppie.nix index 631cb552..992ac9be 100644 --- a/hosts/pie/wake-droppie.nix +++ b/hosts/pie/wake-droppie.nix @@ -3,7 +3,7 @@ services.cron = { enable = true; 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" ]; }; }