From 8fc75274cddb3fd70142c85134b1cf6e2cac96bc Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Sat, 16 Nov 2024 04:21:10 +0100 Subject: [PATCH] removes NAT configuration and Tailscale reverse path check from firewall settings --- config/nixos/common/server.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/config/nixos/common/server.nix b/config/nixos/common/server.nix index 6cc556a..34bc9db 100644 --- a/config/nixos/common/server.nix +++ b/config/nixos/common/server.nix @@ -16,9 +16,6 @@ }; networking = { - nat.enable = true; - nat.enableIPv6 = true; - firewall = { enable = true; @@ -37,9 +34,6 @@ allowedUDPPorts = [ 51820 # WireGuard ]; - - # Required for Tailscale - checkReversePath = "loose"; }; }; }