diff --git a/hosts/sombrero/modules/tailscale/default.nix b/hosts/sombrero/modules/tailscale/default.nix new file mode 100644 index 0000000..cc37916 --- /dev/null +++ b/hosts/sombrero/modules/tailscale/default.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + services.tailscale.enable = true; + + networking.firewall = { + checkReversePath = "loose"; + allowedUDPPorts = [ 41641 ]; + }; +}