summaryrefslogtreecommitdiff
path: root/modules/networking
diff options
context:
space:
mode:
Diffstat (limited to 'modules/networking')
-rw-r--r--modules/networking/firewall.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/networking/firewall.nix b/modules/networking/firewall.nix
index 8077042..d389bff 100644
--- a/modules/networking/firewall.nix
+++ b/modules/networking/firewall.nix
@@ -3,17 +3,11 @@
enable = true;
allowedUDPPorts = [ 53 ];
allowPing = false;
+ trustedInterfaces = [ "tailscale0" ];
allowedTCPPorts = [
80
443
];
-
- allowedUDPPortRanges = [
- {
- from = 60000;
- to = 61000;
- }
- ];
};
}