From 00efec076a390c963e4152e1bdc0555fe9713a48 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 21 Nov 2025 11:39:16 +0100 Subject: [PATCH] feat: adds some `tailscale` options to make it less annoying --- modules/services/tailscale.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/services/tailscale.nix b/modules/services/tailscale.nix index d886410..587b82a 100644 --- a/modules/services/tailscale.nix +++ b/modules/services/tailscale.nix @@ -1,3 +1,10 @@ { - services.tailscale.enable = true; + services.tailscale = { + enable = true; + useRoutingFeatures = "client"; + extraUpFlags = [ + # "--accept-dns=false" + "--accept-routes" + ]; + }; }