From 8ca0aa290153a5d1e33920613476fa56079f7b68 Mon Sep 17 00:00:00 2001 From: randogoth Date: Sat, 7 Feb 2026 20:00:04 +0200 Subject: [PATCH] Enable Tailscale SSH and exit node --- modules/services/tailscale.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/services/tailscale.nix b/modules/services/tailscale.nix index ad2d89c..4269f74 100644 --- a/modules/services/tailscale.nix +++ b/modules/services/tailscale.nix @@ -2,4 +2,10 @@ { services.tailscale.enable = true; services.tailscale.port = 41641; + services.tailscale.useRoutingFeatures = "server"; + services.tailscale.extraUpFlags = [ + "--ssh" + "--advertise-exit-node" + "--hostname=bucur" + ]; }