Files
nixos-configs/hosts/pinwheel/modules/tailscale/default.nix
2024-08-26 10:22:16 +02:00

11 lines
147 B
Nix

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