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" + ]; + }; }