udpated custom readme

This commit is contained in:
2026-01-18 12:23:17 -06:00
parent 218c8bb1c5
commit d6576ac094

View File

@@ -7,12 +7,7 @@ Add-ons are extra features you can have installed before your Sovran Pro is ship
https://github.com/bitcoin/bitcoin 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. 2. The Bitcoin Mempool can be added.
https://blockstream.com/lightning/
3. There is Mempool to be added on via a Tor connection.
https://github.com/mempool/mempool 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: The code for Mempool is as follows:
```nix ```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
'';
};
};
};
```