updated custom to reflect Knots

This commit is contained in:
2025-09-19 10:20:08 -05:00
parent 55cd2c4202
commit 3b3f30f4c9

View File

@@ -2,9 +2,9 @@
Add-ons are extra features you can have installed before your Sovran Pro is shipped to you. Add-ons are extra features you can have installed before your Sovran Pro is shipped to you.
1. 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. 1. Since Sovran_SystemsOS runs Bitcoin Knots by default as opposed to Bitcion Core, you can customize your Sovran Pro or Sovran Pro Max node to run Bitcoin Core.
https://bitcoinknots.org 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. 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.
@@ -20,19 +20,21 @@ https://github.com/mempool/mempool
The code will be installed in the `custom.nix` file. The code will be installed in the `custom.nix` file.
The code for Bitcoin Knots is as follows: The code for Bitcoin Core is as follows:
```nix ```nix
services.bitcoind.package = pkgs.bitcoind-knots; services.bitcoind.package = mkForce config.nix-bitcoin.pkgs.bitcoind;
``` ```
The code for CLN for BTCpayserver backend is as follows: The code for CLN for BTCpayserver backend is as follows:
```nix ```nix
services.btcpayserver.lightningBackend = mkForce "clightning"; services.btcpayserver.lightningBackend = mkForce clightning;
``` ```
The code for Mempool is as follows: The code for Mempool is as follows:
```nix ```nix