trustedcoin: explicitly use the HTTPS_PROXY for external connections

This commit is contained in:
Otto Sabart 2023-04-13 21:00:00 +02:00
parent 4942130abe
commit 67f2eb2feb
No known key found for this signature in database
GPG Key ID: 823BAE99F8BE1E3C
1 changed files with 6 additions and 0 deletions

View File

@ -18,5 +18,11 @@ let cfg = config.services.clightning.plugins.trustedcoin; in
plugin=${cfg.package}/bin/trustedcoin
disable-plugin=bcli
'';
# Trustedcoin does not honor the clightning's proxy configuration.
# Ref.: https://github.com/nbd-wtf/trustedcoin/pull/19
systemd.services.clightning.environment = mkIf (config.services.clightning.proxy != null) {
HTTPS_PROXY = "socks5://${config.services.clightning.proxy}";
};
};
}