diff --git a/common/nixos/default-config.nix b/common/nixos/default-config.nix index 428fc75..afc7599 100644 --- a/common/nixos/default-config.nix +++ b/common/nixos/default-config.nix @@ -80,6 +80,18 @@ networking = { networkmanager.enable = true; wireless.enable = false; + + firewall.interfaces = { + "tailscale0" = { + allowedUDPPortRanges = [ { from = 0; to = 65535; } ]; + allowedTCPPortRanges = [ { from = 0; to = 65535; } ]; + }; + + "ztt6jt6i65" = { + allowedUDPPortRanges = [ { from = 0; to = 65535; } ]; + allowedTCPPortRanges = [ { from = 0; to = 65535; } ]; + }; + }; }; security = {