10 lines
239 B
Nix
10 lines
239 B
Nix
{lib, ...}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = lib.mkDefault "client";
|
|
};
|
|
networking.firewall = {
|
|
checkReversePath = "loose";
|
|
allowedUDPPorts = [41641]; # Facilitate firewall punching
|
|
};
|
|
}
|