1
0
Fork 0
puter/common/tailscale.nix
2025-05-18 01:08:10 +02:00

12 lines
229 B
Nix

{ config, ... }:
{
services.tailscale = {
enable = true;
openFirewall = true;
useRoutingFeatures = "both"; # TODO
};
networking.firewall.trustedInterfaces = [
config.services.tailscale.interfaceName
];
}