Add Bitcoin Pulse module integration
This commit is contained in:
parent
3d8488a9b4
commit
fc8c7de05d
3 changed files with 146 additions and 5 deletions
15
modules/bitcoin-pulse.nix
Normal file
15
modules/bitcoin-pulse.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue