2021-01-14 04:24:23 -08:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
mkRenamedAnnounceTorOption = service:
|
|
|
|
# use mkRemovedOptionModule because mkRenamedOptionModule fails with an infinite recursion error
|
|
|
|
mkRemovedOptionModule [ "services" service "announce-tor" ] ''
|
|
|
|
Use option `nix-bitcoin.onionServices.${service}.public` instead.
|
|
|
|
'';
|
2021-11-28 12:24:49 -08:00
|
|
|
|
|
|
|
mkSplitEnforceTorOption = service:
|
|
|
|
(mkRemovedOptionModule [ "services" service "enforceTor" ] ''
|
|
|
|
The option has been split into options `tor.proxy` and `tor.enforce`.
|
|
|
|
Set `tor.proxy = true` to proxy outgoing connections with Tor.
|
|
|
|
Set `tor.enforce = true` to only allow connections (incoming and outgoing) through Tor.
|
|
|
|
'');
|
|
|
|
mkRenamedEnforceTorOption = service:
|
|
|
|
(mkRenamedOptionModule [ "services" service "enforceTor" ] [ "services" service "tor" "enforce" ]);
|
|
|
|
|
2021-01-14 04:24:23 -08:00
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [ "services" "bitcoind" "bind" ] [ "services" "bitcoind" "address" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "bitcoind" "rpcallowip" ] [ "services" "bitcoind" "rpc" "allowip" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "bitcoind" "rpcthreads" ] [ "services" "bitcoind" "rpc" "threads" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "clightning" "bind-addr" ] [ "services" "clightning" "address" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "clightning" "bindport" ] [ "services" "clightning" "port" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "spark-wallet" "host" ] [ "services" "spark-wallet" "address" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "lnd" "rpclisten" ] [ "services" "lnd" "rpcAddress" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "lnd" "listen" ] [ "services" "lnd" "address" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "lnd" "listenPort" ] [ "services" "lnd" "port" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "btcpayserver" "bind" ] [ "services" "btcpayserver" "address" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "liquidd" "bind" ] [ "services" "liquidd" "address" ])
|
|
|
|
(mkRenamedOptionModule [ "services" "liquidd" "rpcbind" ] [ "services" "liquidd" "rpc" "address" ])
|
|
|
|
|
2021-03-10 05:08:34 -08:00
|
|
|
(mkRenamedOptionModule [ "nix-bitcoin" "setup-secrets" ] [ "nix-bitcoin" "setupSecrets" ])
|
|
|
|
|
2021-01-14 04:24:23 -08:00
|
|
|
(mkRenamedAnnounceTorOption "clightning")
|
|
|
|
(mkRenamedAnnounceTorOption "lnd")
|
2021-10-05 07:52:02 -07:00
|
|
|
|
|
|
|
# 0.0.53
|
|
|
|
(mkRemovedOptionModule [ "services" "electrs" "high-memory" ] ''
|
|
|
|
This option is no longer supported by electrs 0.9.0. Electrs now always uses
|
|
|
|
bitcoin peer connections for syncing blocks. This performs well on low and high
|
|
|
|
memory systems.
|
|
|
|
'')
|
2021-11-28 12:24:49 -08:00
|
|
|
] ++
|
|
|
|
# 0.0.59
|
|
|
|
(map mkSplitEnforceTorOption [
|
|
|
|
"clightning"
|
|
|
|
"lightning-loop"
|
|
|
|
"lightning-pool"
|
|
|
|
"liquid"
|
|
|
|
"lnd"
|
|
|
|
"spark-wallet"
|
|
|
|
"bitcoind"
|
|
|
|
]) ++
|
|
|
|
(map mkRenamedEnforceTorOption [
|
|
|
|
"btcpayserver"
|
|
|
|
"rtl"
|
|
|
|
"electrs"
|
|
|
|
]);
|
2021-01-14 04:24:23 -08:00
|
|
|
}
|