btcpayserver: add L-BTC support

This commit is contained in:
nixbitcoin 2021-07-13 14:03:08 +00:00
parent b24c14ec61
commit 54810ce1bf
No known key found for this signature in database
GPG key ID: B6044ECBA2DAE5D0
4 changed files with 42 additions and 10 deletions

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 = {