btcpayserver: add L-BTC support

This commit is contained in:
nixbitcoin
2021-08-10 10:04:54 +00:00
parent b24c14ec61
commit 54810ce1bf
4 changed files with 42 additions and 10 deletions
+4 -2
View File
@@ -230,12 +230,14 @@ in {
};
nbxplorer = {
id = 23;
connections = [ "bitcoind" ];
connections = [ "bitcoind" ]
++ optional config.services.btcpayserver.lbtc "liquidd";
};
btcpayserver = {
id = 24;
connections = [ "nbxplorer" ]
++ optional (config.services.btcpayserver.lightningBackend == "lnd") "lnd";
++ optional (config.services.btcpayserver.lightningBackend == "lnd") "lnd"
++ optional config.services.btcpayserver.lbtc "liquidd";
# communicates with clightning over rpc socket
};
joinmarket = {