nixos-config/systemProfiles/network/tailscale.nix
2024-10-25 10:39:48 +02:00

12 lines
218 B
Nix

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