From 73c12d8b345eff99545a9c18713a57be582bd0f1 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 25 Apr 2026 08:58:24 -0500 Subject: [PATCH] hotspot test --- modules/features/ethdhcp.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" ]; }; };