nix-dotfiles/hosts/modules/tailscale.nix
2025-06-30 21:21:44 -06:00

10 lines
163 B
Nix

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