14 lines
721 B
Diff
14 lines
721 B
Diff
diff --git a/nixos/modules/services/security/tor.nix b/nixos/modules/services/security/tor.nix
|
|
index 4ff941251c99..32c9d8ae046c 100644
|
|
--- a/nixos/modules/services/security/tor.nix
|
|
+++ b/nixos/modules/services/security/tor.nix
|
|
@@ -854,7 +854,7 @@ in
|
|
BridgeRelay = true;
|
|
ExtORPort.port = mkDefault "auto";
|
|
ServerTransportPlugin.transports = mkDefault ["obfs4"];
|
|
- ServerTransportPlugin.exec = mkDefault "${pkgs.obfs4}/bin/obfs4proxy managed";
|
|
+ ServerTransportPlugin.exec = mkDefault "${lib.getExe pkgs.obfs4} managed";
|
|
} // optionalAttrs (cfg.relay.role == "private-bridge") {
|
|
ExtraInfoStatistics = false;
|
|
PublishServerDescriptor = false;
|