diff options
-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"; |