bucur/modules/services/tor-bridge.nix
randogoth 49e54f3fa9 Remove ServerTransportPlugin override; use module defaults for bridge
When role=bridge, the NixOS tor module already configures
ServerTransportPlugin with pkgs.obfs4 and ExtORPort=auto.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-27 16:57:43 +03:00

13 lines
236 B
Nix

{ ... }: {
services.tor = {
enable = true;
relay = {
enable = true;
role = "bridge";
};
settings = {
ServerTransportListenAddr = "obfs4 0.0.0.0:4430";
BridgeDistribution = "none";
};
};
}