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