nixos-config/hosts/chunk/tailscale.nix

14 lines
276 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;
extraUpFlags = [
"--advertise-exit-node"
"--accept-dns=false"
];
2025-01-24 01:10:53 -05:00
useRoutingFeatures = "server";
openFirewall = true;
};
}