Merge pull request #343 from naturallaw777/copilot/fix-wallet-connections-integration

Use nix-bitcoin `services.lnd.certPath` for Wallet Connections LND setup
This commit is contained in:
Sovran Systems
2026-07-27 09:18:40 -05:00
committed by GitHub
+1 -1
View File
@@ -13,7 +13,7 @@ let
lndRpcAddress = lib.attrByPath [ "services" "lnd" "rpcAddress" ] "127.0.0.1" config;
lndRpcPort = toString (lib.attrByPath [ "services" "lnd" "rpcPort" ] 10009 config);
lndCertPath = lib.attrByPath [ "services" "lnd" "certPath" ] "/var/lib/lnd/tls.cert" config;
lndCertPath = config.services.lnd.certPath;
albyhubWrapper = pkgs.writeShellScript "albyhub-wrapper" ''
set -euo pipefail