diff --git a/modules/features/ethdhcp.nix b/modules/features/ethdhcp.nix index 3739225..3197dcd 100644 --- a/modules/features/ethdhcp.nix +++ b/modules/features/ethdhcp.nix @@ -1,6 +1,6 @@ { ... }: { - flake.nixosModules.hotspot = { config, lib, ... }: { + flake.nixosModules.ethdhcp = { config, lib, ... }: { networking.firewall.interfaces."eno1" = { allowedUDPPorts = [ 53 67 68 ]; @@ -23,7 +23,7 @@ enable = true; settings = { interface = "eno1"; - dhcp-range = [ "192.168.121.2,192.168.121.10,1h" ]; + dhcp-range = [ "192.168.121.2,192.168.121.2,1h" ]; }; };