enable wake on lan on 'andromache' host

This commit is contained in:
2025-11-27 10:37:05 +01:00
parent 68bf971992
commit e0a1ec77ed

View File

@@ -128,4 +128,15 @@ in
enable = true; enable = true;
package = pkgs.plocate; package = pkgs.plocate;
}; };
networking = {
interfaces = {
eno1 = {
wakeOnLan.enable = true;
};
};
firewall = {
allowedUDPPorts = [ 9 ];
};
};
} }