13 lines
294 B
Nix
Raw Normal View History

2025-05-06 13:23:55 +02:00
{config, ...}: {
2024-12-06 07:16:50 +01:00
services.tailscale = {
enable = true;
2025-05-06 13:22:39 +02:00
authKeyFile = config.age.secrets.tailscale-key.path;
2025-05-06 13:23:55 +02:00
useRoutingFeatures = "both";
2025-05-06 13:22:39 +02:00
extraUpFlags = [
"--login-server=https://va.m3tam3re.com"
2025-05-06 13:23:55 +02:00
"--accept-routes"
2025-05-06 13:22:39 +02:00
"--exit-node-allow-lan-access"
];
2024-12-06 07:16:50 +01:00
};
}