diff options
author | Ben Sima <ben@bsima.me> | 2022-02-09 18:17:46 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-02-09 18:17:46 -0500 |
commit | c2de6ff2bdf08620a4697733ea32c2ae847612f8 (patch) | |
tree | 7d1d9eb510c3086f752bd6aafc392b44268f1387 | |
parent | f664669439c0f005e3579d1c67b4ebd9fa24de36 (diff) |
Get tor working again
-rw-r--r-- | Biz/Dev/Configuration.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index 372d4c8..abdbfab 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -76,13 +76,12 @@ in { services.tor.enable = true; services.tor.client.enable = true; - services.tor.settings.enable = true; - services.tor.settings.role = "bridge"; - services.tor.settings.ORPort = ports.tor; - services.tor.settings.Nickname = "ydeee3q1cjo83tsuqcz"; - services.tor.settings.AccountingMax = "10 GBytes"; - services.tor.settings.AccountingStart = "month 1 1:00"; - services.tor.settings.ContactInfo = "ContactInfo pgp:66A6AD150399D970DCA4C4E6C8218B7D0BFDECCD ciissversion:2"; + services.tor.relay.role = "bridge"; + services.tor.relay.port = ports.tor; + services.tor.relay.nickname = "ydeee3q1cjo83tsuqcz"; + services.tor.relay.accountingMax = "10 GBytes"; + services.tor.relay.accountingStart = "month 1 1:00"; + services.tor.relay.contactInfo = "ContactInfo pgp:66A6AD150399D970DCA4C4E6C8218B7D0BFDECCD ciissversion:2"; services.bitcoind.mainnet.enable = true; services.bitcoind.mainnet.dataDir = "/mnt/campbell/bitcoind-mainnet/data"; |