nix-dotfiles/modules/tailscale.nix
2025-03-31 16:39:56 -06:00

10 lines
163 B
Nix

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