Files
gooberos/modules/desktop/tailscale.nix

11 lines
227 B
Nix
Raw Normal View History

2026-03-30 00:20:36 +02:00
{
2026-04-23 18:16:20 +02:00
services.tailscale = {
enable = true;
disableUpstreamLogging = true;
disableTaildrop = true;
extraSetFlags = [
"--accept-dns=false"
"--ssh=false"
];
};
2026-03-30 00:20:36 +02:00
}