Add Bitcoin Pulse module integration

This commit is contained in:
Tobserver Agent 2026-07-26 18:23:37 +07:00
parent 3d8488a9b4
commit fc8c7de05d
3 changed files with 146 additions and 5 deletions

15
modules/bitcoin-pulse.nix Normal file
View file

@ -0,0 +1,15 @@
{ bitcoin-pulse, ... }:
{
imports = [ bitcoin-pulse.nixosModules.default ];
services.bitcoin-pulse = {
# BIT-28 and BIT-29 will enable the production instance after PostgreSQL,
# migrations, and credentials have been configured.
enable = false;
bindAddress = "127.0.0.1";
port = 3000;
mempool.baseUrl = "http://127.0.0.1:8999";
};
}