nixos-config/hosts/ytnix/tailscale.nix

12 lines
254 B
Nix
Raw Normal View History

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