15 lines
366 B
Nix
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";
|
|
};
|
|
}
|