diff --git a/modules/nixos/system.nix b/modules/nixos/system.nix index 2abe44a..c9640bc 100644 --- a/modules/nixos/system.nix +++ b/modules/nixos/system.nix @@ -27,9 +27,6 @@ # Enable networking networking.networkmanager.enable = true; - # Enable WOL on my ethernet interface. - networking.interfaces.enp5s0.wakeOnLan.enable = true; - # Define variables that will be initialized in PAM. environment.sessionVariables = { # Set env for Fcitx5 diff --git a/specific/desktop/nixos.nix b/specific/desktop/nixos.nix index 3b59bcd..2514b97 100644 --- a/specific/desktop/nixos.nix +++ b/specific/desktop/nixos.nix @@ -131,4 +131,11 @@ LC_TIME = "en_GB.UTF-8"; }; }; + + # + # NETWORK # + # + + # Enable WOL on my ethernet interface. + networking.interfaces.enp5s0.wakeOnLan.enable = true; }