Update btcpayserver.nix

This commit is contained in:
Bitcoin Txoko
2024-07-23 09:25:42 +02:00
committed by GitHub
parent a1523987b7
commit ac4ea8fa10
+20
View File
@@ -1,6 +1,26 @@
### BTCPayServer
{ {
services.btcpayserver = { services.btcpayserver = {
# Set this to enable BTCPayServer, a self-hosted, open-source
# cryptocurrency payment processor.
enable = true; enable = true;
# Privacy Warning: BTCPayServer currently looks up price rates without
# proxying them through Tor. This means an outside observer can correlate
# your BTCPayServer usage, like invoice creation times, with your IP address.
#
# Enable this option to connect BTCPayServer to clightning.
lightningBackend = "clightning"; lightningBackend = "clightning";
#
# Enable this option to connect BTCPayServert to lnd.
#
# The lightning backend service is automatically enabled.
# Afterwards you need to go into Store > General Settings > Lightning Nodes
# and select "the internal lightning node of this BTCPay Server".
#
}; };
# Set this to create an onion service to make the btcpayserver web interface
# accessible via Tor.
# Security WARNING: Create a btcpayserver administrator account before allowing
# public access to the web interface.
# nix-bitcoin.onionServices.btcpayserver.enable = true;
} }