dots/modules/nixos/features/tailscale.nix
2025-10-22 01:22:05 +11:00

10 lines
169 B
Nix

{
services.tailscale = {
enable = true;
extraSetFlags = [
"--accept-dns=true"
];
};
networking.firewall.trustedInterfaces = [ "tailscale0" ];
}