Files
nixos-configs/hosts/backwards/modules/tailscale/default.nix
2024-08-31 11:16:01 +02:00

10 lines
146 B
Nix

{ ... }:
{
services.tailscale.enable = true;
networking.firewall = {
checkReversePath = "loose";
allowedUDPPorts = [ 41641 ];
};
}