From dd2cd91d7fe9e9b445ea09f931f7df830bcd7710 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Fri, 23 Aug 2024 23:09:30 +0200 Subject: [PATCH] pinwheel: Add `tailscale` module --- hosts/pinwheel/modules/tailscale/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 hosts/pinwheel/modules/tailscale/default.nix diff --git a/hosts/pinwheel/modules/tailscale/default.nix b/hosts/pinwheel/modules/tailscale/default.nix new file mode 100644 index 0000000..d83e260 --- /dev/null +++ b/hosts/pinwheel/modules/tailscale/default.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + services.tailscale.enable = true; + + networking.firewall = { + checkReversePath = "loose"; + allowedUDPPorts = [ 41641 ]; + }; + +}