From e0a1ec77ed305907b09c668be0c22e5c327301f7 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Thu, 27 Nov 2025 10:37:05 +0100 Subject: [PATCH] enable wake on lan on 'andromache' host --- hosts/andromache/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/andromache/default.nix b/hosts/andromache/default.nix index 4fa9ad8..ab5cd86 100644 --- a/hosts/andromache/default.nix +++ b/hosts/andromache/default.nix @@ -128,4 +128,15 @@ in enable = true; package = pkgs.plocate; }; + + networking = { + interfaces = { + eno1 = { + wakeOnLan.enable = true; + }; + }; + firewall = { + allowedUDPPorts = [ 9 ]; + }; + }; }