12 lines
227 B
Nix
12 lines
227 B
Nix
{ ... }:
|
|
{
|
|
# If an exit node is used, set:
|
|
# tailscale set --exit-node-allow-lan-access
|
|
services.tailscale.enable = true;
|
|
|
|
networking.firewall = {
|
|
checkReversePath = "loose";
|
|
allowedUDPPorts = [ 41641 ];
|
|
};
|
|
}
|