From f6bb0ccf0bd1274b3b12ab3f5bed06c88a41cd04 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 24 Apr 2026 21:55:40 -0500 Subject: [PATCH] hotspot test --- modules/features/hotspot.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/features/hotspot.nix b/modules/features/hotspot.nix index 2fbded4..4f83a9b 100644 --- a/modules/features/hotspot.nix +++ b/modules/features/hotspot.nix @@ -3,7 +3,8 @@ flake.nixosModules.hotspot = { config, lib, ... }: { networking.firewall.interfaces."wlo1" = { - allowedUDPPorts = [ 67 68 ]; + allowedUDPPorts = [ 53 67 68 ]; + allowedTCPPorts = [ 53 67 68 ]; }; services.dnsmasq.enable = true;