12 lines
218 B
Nix
12 lines
218 B
Nix
{
|
|
self,
|
|
super,
|
|
root,
|
|
}: {config, ...}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
useRoutingFeatures = "client";
|
|
#authKeyFile = config.sops.secrets.tailscale-auth.path;
|
|
};
|
|
}
|