dotfiles/common/systemModules/tailscaleServer.nix

11 lines
210 B
Nix
Raw Normal View History

2025-02-21 21:45:59 -05:00
{ config, ... }:
{
services = {
tailscale = {
enable = true;
authKeyFile = config.sops.secrets.tailscale_server_key.path;
2025-02-21 22:08:59 -05:00
extraSetFlags = [ "--advertise-exit-node=true" ];
2025-02-21 21:45:59 -05:00
};
};
}