Tobserver/modules/bitcoin-pulse.nix
2026-07-26 18:23:37 +07:00

15 lines
366 B
Nix

{ 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";
};
}