nixos-config/hosts/ytnix/tailscale.nix

14 lines
281 B
Nix
Raw Permalink Normal View History

{ config, ... }:
{
2025-01-24 01:10:53 -05:00
services.tailscale = {
enable = true;
authKeyFile = config.sops.secrets."tailscale/auth".path;
openFirewall = true;
useRoutingFeatures = "client";
extraUpFlags = [
"--exit-node=100.122.132.30"
"--accept-dns=false"
2025-01-24 01:10:53 -05:00
];
};
}