nix-config/hosts/common/optional/tailscale.nix

11 lines
239 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{lib, ...}: {
services.tailscale = {
enable = true;
useRoutingFeatures = lib.mkDefault "client";
};
networking.firewall = {
checkReversePath = "loose";
allowedUDPPorts = [41641]; # Facilitate firewall punching
};
}