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;