Enable wake-on-lan for polaris

This commit is contained in:
2025-12-04 18:41:59 +01:00
parent 2a63a01ce3
commit dca64dd6c2

View File

@@ -3,10 +3,22 @@
imports = [
../../modules/nixos/desktop.nix
../../modules/nixos/ssh.nix
./hardware-configuration.nix
./variables.nix
];
networking = {
interfaces = {
enp5s0 = {
wakeOnLan.enable = true;
};
};
firewall = {
allowedUDPPorts = [ 9 ];
};
};
home-manager.users."${config.var.username}" = import ./home.nix;
system.stateVersion = "24.05";