nix-config/hosts/common/global/tailscale.nix

16 lines
334 B
Nix
Raw Normal View History

{ lib, ... }:
{
services.tailscale = {
enable = true;
useRoutingFeatures = lib.mkDefault "client";
};
networking.firewall = {
checkReversePath = "loose";
allowedUDPPorts = [ 41641 ]; # Facilitate firewall punching
};
environment.persistence = {
"/persist".directories = [ "/var/lib/tailscale" ];
};
}