From d6576ac094e1611c89acbd345c581baed12f5114 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Sun, 18 Jan 2026 12:23:17 -0600 Subject: [PATCH] udpated custom readme --- custom-add-ons.md | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/custom-add-ons.md b/custom-add-ons.md index dc880c2..2ed3975 100644 --- a/custom-add-ons.md +++ b/custom-add-ons.md @@ -7,12 +7,7 @@ Add-ons are extra features you can have installed before your Sovran Pro is ship https://github.com/bitcoin/bitcoin -2. By default Sovran_SystemsOS runs LND as the default Lightning node software for BTCpayserver. You are now able to run CLN as the backend to BTCpayserver instead of LND. - -https://blockstream.com/lightning/ - - -3. There is Mempool to be added on via a Tor connection. +2. The Bitcoin Mempool can be added. https://github.com/mempool/mempool @@ -27,16 +22,24 @@ services.bitcoind.package = lib.mkForce config.nix-bitcoin.pkgs.bitcoind; ``` -The code for CLN for BTCpayserver backend is as follows: - -```nix -services.btcpayserver.lightningBackend = lib.mkForce "clightning"; -``` - - The code for Mempool is as follows: ```nix -services.mempool.enable = true; -``` +services.mempool = { + enable = true; + frontend.enable = true; +}; +services.mysql.package = lib.mkForce pkgs.mariadb; + +services.caddy = { + virtualHosts = { + ":60847" = { + extraConfig = '' + reverse_proxy :60845 + encode gzip zstd + ''; + }; + }; +}; +```