1
0
Fork 0
puter/common/tailscale.nix

16 lines
288 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{ config, ... }:
{
2025-03-23 22:48:46 +01:00
services.tailscale = {
enable = true;
openFirewall = true;
};
networking.firewall = {
trustedInterfaces = [
config.services.tailscale.interfaceName
];
# Required to connect to Tailscale exit nodes
checkReversePath = "loose";
};
}