15 lines
502 B
Nix
15 lines
502 B
Nix
{ config, specialConfig, lib, pkgs, ... }:
|
|
{
|
|
services.nbxplorer = {
|
|
enable = true;
|
|
address = "0.0.0.0";
|
|
port = 24444;
|
|
# dataDir = "/var/lib/nbxplorer";
|
|
user = "nbxplorer";
|
|
group = "nbxplorer";
|
|
# Database connection string to external/local PostgreSQL:
|
|
# postgres = "User ID=nbxplorer;Host=0.0.0.0;Port=5432;Database=nbxplorermainnet;";
|
|
# chains = [ "btc" "ltc" "lbtc" ];
|
|
# Additional NBXplorer server args/overrides can go here.
|
|
};
|
|
}
|