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