2025-01-27 02:28:39 -05:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
2025-01-24 01:10:53 -05:00
|
|
|
services.tailscale = {
|
|
|
|
enable = true;
|
|
|
|
authKeyFile = config.sops.secrets."tailscale/auth".path;
|
2025-01-25 09:47:52 -05:00
|
|
|
extraUpFlags = [
|
|
|
|
"--advertise-exit-node"
|
|
|
|
"--accept-dns=false"
|
|
|
|
];
|
2025-01-24 01:10:53 -05:00
|
|
|
useRoutingFeatures = "server";
|
|
|
|
openFirewall = true;
|
|
|
|
};
|
|
|
|
}
|