bucur/modules/services/tor-bridge.nix

16 lines
341 B
Nix
Raw Normal View History

2026-03-27 16:52:51 +03:00
{ pkgs, ... }: {
services.tor = {
enable = true;
relay = {
enable = true;
role = "bridge";
};
settings = {
ServerTransportPlugin = "obfs4 exec ${pkgs.obfs4}/bin/obfs4proxy";
ServerTransportListenAddr = "obfs4 0.0.0.0:4430";
ExtORPort = "auto";
BridgeDistribution = "none";
};
};
}