Create mempool.nix

This commit is contained in:
Bitcoin Txoko
2024-07-21 12:09:36 +02:00
committed by GitHub
parent 0cec8358b0
commit 3151ec129e
+10
View File
@@ -0,0 +1,10 @@
{...}: {
services.mempool = {
enable = true;
electrumServer = "fulcrum";
frontend.enable = true;
};
# Set this to create an onion service to make the mempool web interface
# available via Tor:
# nix-bitcoin.onionServices.mempool-frontend.enable = true;
}