diff options
author | Ben Sima <ben@bsima.me> | 2021-04-20 19:49:01 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:34 -0500 |
commit | 6603960da6fd4bf2e65d844da116e0f507e541d3 (patch) | |
tree | 6aa87538d83e4e89f06d285345d03fb5a8c4784d | |
parent | 273a717ecf3f52d14e10001710c5267f6277f710 (diff) |
Enable tor
-rw-r--r-- | Biz/Dev/Configuration.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index 377624c..3d97bce 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -120,6 +120,20 @@ in { host = "0.0.0.0"; }; + tor = { + enable = true; + client.enable = true; + relay = { + enable = true; + role = "bridge"; + port = 143; + nickname = "ydeee3q1cjo83tsuqcz"; + accountingMax = "10 GBytes"; + accountingStart = "month 1 1:00"; + contactInfo = "ContactInfo pgp:66A6AD150399D970DCA4C4E6C8218B7D0BFDECCD ciissversion:2"; + }; + }; + bitcoind = { mainnet = { enable = true; |