nixos-config/modules/services/tailscale.nix

11 lines
169 B
Nix
Raw Normal View History

2025-05-18 14:09:40 +02:00
{
services.tailscale = {
enable = true;
useRoutingFeatures = "client";
extraUpFlags = [
# "--accept-dns=false"
"--accept-routes"
];
};
2025-05-18 14:09:40 +02:00
}