13 lines
294 B
Nix
Raw Normal View History

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