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