From bc5eac966e8e86853a45f72d1ed55ae5bf141ca9 Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 09:16:26 +0200 Subject: [PATCH] Add comments to rtl.nix --- system/bitcoin/rtl.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/system/bitcoin/rtl.nix b/system/bitcoin/rtl.nix index 4f351bf..44836bf 100644 --- a/system/bitcoin/rtl.nix +++ b/system/bitcoin/rtl.nix @@ -1,9 +1,21 @@ { + ### RIDE THE LIGHTNING services.rtl = { + # Set this to enable RTL, a web interface for lnd and clightning. enable = true; nodes = { + # Set this to add a lnd node interface. + # Automatically enables lnd. # lnd.enable = true; - clightning.enable = true; + # Set this to add a clightning node interface. + # Automatically enables clightning. + # clightning.enable = true; + # + # You can enable both nodes simultaneously. + # + # Set this option to enable swaps with lightning-loop. + # Automatically enables lightning-loop. + # lnd.loop = true; }; }; }