dotfiles/common/systemModules/tailscaleServer.nix
2025-02-21 22:08:59 -05:00

10 lines
210 B
Nix

{ config, ... }:
{
services = {
tailscale = {
enable = true;
authKeyFile = config.sops.secrets.tailscale_server_key.path;
extraSetFlags = [ "--advertise-exit-node=true" ];
};
};
}