From 69a259ab81b1c6cb7f4e023a4577164138d8c8f2 Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 09:20:27 +0200 Subject: [PATCH] Add comments to fulcrum.nix --- system/bitcoin/fulcrum.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/system/bitcoin/fulcrum.nix b/system/bitcoin/fulcrum.nix index 22caad0..27df513 100644 --- a/system/bitcoin/fulcrum.nix +++ b/system/bitcoin/fulcrum.nix @@ -1,5 +1,14 @@ +### FULCRUM { services.fulcrum = { + # Set this to enable fulcrum, an Electrum server implemented in C++. + # + # Compared to electrs, fulcrum has higher storage demands but + # can serve arbitrary address queries instantly. + # + # Before enabling fulcrum, and for more info on storage demands, + # see the description of option `enable` in ../modules/fulcrum.nix + # enable = true; }; }