diff --git a/workstation/default.nix b/workstation/default.nix index 0a63feb..0e3e957 100644 --- a/workstation/default.nix +++ b/workstation/default.nix @@ -267,16 +267,16 @@ in # allow the Tailscale UDP port through the firewall allowedUDPPorts = [ config.services.tailscale.port ]; - #allowedUDPPortRanges = [ { from = 1714 ; to = 1764; }]; + allowedTCPPortRanges = [ { from = 1714 ; to = 1764; } ]; + allowedUDPPortRanges = [ { from = 1714 ; to = 1764; } ]; # allow you to SSH in over the public internet allowedTCPPorts = [ 22 ]; - #allowedTCPPortRanges = [ { from = 1714 ; to = 1764; } ]; - interfaces = { - "tailscale0" = { - allowedTCPPorts = [ 22 8080 8443 ]; - }; - }; + #interfaces = { + #"tailscale0" = { + #allowedTCPPorts = [ 22 8080 8443 ]; + #}; + #}; };