1.0 KiB
1.0 KiB
Custom Add-ons for your Sovran Pro
Add-ons are extra features you can have installed before your Sovran Pro is shipped to you.
- There is also Bitcoin Knots Node available to be added instead of the regular Bitcoin Node. Bitcoin Knots allows a special filter to block unwanted, unusable, erroneous data on the Bitcoin Timechain chain.
- 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/
- There is Mempool to be added on via a Tor connection.
https://github.com/mempool/mempool
The code will be installed in the custom.nix
file.
The code for Bitcoin Knots is as follows:
services.bitcoind.package = pkgs.bitcoind-knots;
The code for CLN for BTCpayserver backend is as follows:
services.btcpayserver.lightningBackend = mkForce "clightning";
The code for Mempool is as follows:
services.mempool.enable = true;