From 7adbeb55092582dd3a406cb3cf73bc4d92c2fd6b Mon Sep 17 00:00:00 2001 From: traxys Date: Sun, 7 May 2023 11:37:33 +0200 Subject: [PATCH] ZeNixComputa: Enable wake on lan --- hostconfig/ZeNixComputa/nixos.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hostconfig/ZeNixComputa/nixos.nix b/hostconfig/ZeNixComputa/nixos.nix index cae5ea9..d80a6c2 100644 --- a/hostconfig/ZeNixComputa/nixos.nix +++ b/hostconfig/ZeNixComputa/nixos.nix @@ -25,7 +25,10 @@ networking = { hostName = "ZeNixComputa"; interfaces = { - enp4s0.useDHCP = true; + enp4s0 = { + useDHCP = true; + wakeOnLan.enable = true; + }; }; };