diff --git a/hosts/m3-ares/services/tailscale.nix b/hosts/m3-ares/services/tailscale.nix index 4748fea..50a22a6 100644 --- a/hosts/m3-ares/services/tailscale.nix +++ b/hosts/m3-ares/services/tailscale.nix @@ -1,20 +1,12 @@ -{ - config, - pkgs, - ... -}: { +{config, ...}: { services.tailscale = { enable = true; authKeyFile = config.age.secrets.tailscale-key.path; + useRoutingFeatures = "both"; extraUpFlags = [ "--login-server=https://va.m3tam3re.com" - ]; - extraSetFlags = [ - "--exit-node=m3-atlas" + "--accept-routes" "--exit-node-allow-lan-access" ]; }; - environment.systemPackages = with pkgs; [ - tailscale - ]; }