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