2026-01-18 12:30:14 -06:00
## Custom Add-ons for your Sovran Pro or Sovran Pro Max
2024-05-27 12:04:19 -07:00
Add-ons are extra features you can have installed before your Sovran Pro is shipped to you.
2025-09-19 10:20:08 -05:00
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.
2024-05-27 12:04:19 -07:00
2025-09-19 10:20:08 -05:00
https://github.com/bitcoin/bitcoin
2024-05-27 12:04:19 -07:00
2026-01-18 12:27:43 -06:00
2. The Bitcoin Mempool can be added and can be accessed via Tor or on your local network.
2024-12-16 10:53:46 -08:00
https://github.com/mempool/mempool
2024-05-27 12:04:19 -07:00
The code will be installed in the `custom.nix` file.
2025-09-19 10:20:08 -05:00
The code for Bitcoin Core is as follows:
2024-05-27 12:04:19 -07:00
```nix
2025-09-19 22:13:29 -05:00
services.bitcoind.package = lib.mkForce config.nix-bitcoin.pkgs.bitcoind;
2024-05-27 12:04:19 -07:00
```
2024-06-28 19:55:15 -07:00
2024-12-16 10:53:46 -08:00
The code for Mempool is as follows:
2024-06-28 19:55:15 -07:00
2024-12-16 10:53:46 -08:00
```nix
2026-01-18 12:23:17 -06:00
services.mempool = {
enable = true;
frontend.enable = true;
};
services.mysql.package = lib.mkForce pkgs.mariadb;
2026-01-18 12:27:43 -06:00
nix-bitcoin.onionServices.mempool-frontend.enable = true;
2026-01-18 12:23:17 -06:00
services.caddy = {
virtualHosts = {
":60847" = {
extraConfig = ''
reverse_proxy :60845
encode gzip zstd
'';
};
};
};
2024-06-28 19:55:15 -07:00
```