btcpayserver: add L-BTC support

This commit is contained in:
nixbitcoin
2021-07-13 14:03:08 +00:00
parent b24c14ec61
commit 54810ce1bf
4 changed files with 42 additions and 10 deletions

View File

@@ -79,7 +79,10 @@ let
services.liquidd.extraConfig = mkIf config.test.noConnections "connect=0";
tests.btcpayserver = cfg.btcpayserver.enable;
services.btcpayserver.lightningBackend = "lnd";
services.btcpayserver = {
lightningBackend = "lnd";
lbtc = true;
};
# Needed to test macaroon creation
environment.systemPackages = mkIfTest "btcpayserver" (with pkgs; [ openssl xxd ]);