1
0
Fork 0
puter/common/tailscale.nix
2025-05-11 22:49:04 +02:00

15 lines
288 B
Nix

{ config, ... }:
{
services.tailscale = {
enable = true;
openFirewall = true;
};
networking.firewall = {
trustedInterfaces = [
config.services.tailscale.interfaceName
];
# Required to connect to Tailscale exit nodes
checkReversePath = "loose";
};
}