9 lines
239 B
Nix
9 lines
239 B
Nix
{ config, ... }: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
authKeyFile = config.sops.secrets."tailscale/auth".path;
|
|
extraUpFlags = [ "--advertise-exit-node" ];
|
|
useRoutingFeatures = "server";
|
|
openFirewall = true;
|
|
};
|
|
}
|