mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-22 08:09:11 -05:00
10 lines
210 B
Nix
10 lines
210 B
Nix
{ config, ... }:
|
|
{
|
|
services = {
|
|
tailscale = {
|
|
enable = true;
|
|
authKeyFile = config.sops.secrets.tailscale_server_key.path;
|
|
extraSetFlags = [ "--advertise-exit-node=true" ];
|
|
};
|
|
};
|
|
}
|