From 2439bdf588b2f4955ec23b923d7647d3662c5fea Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Fri, 7 Nov 2025 13:24:16 -0600 Subject: [PATCH] Add rtl to Hosea --- hosts/hosea/bitcoin.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/hosea/bitcoin.nix b/hosts/hosea/bitcoin.nix index 6bda509..8b25efc 100644 --- a/hosts/hosea/bitcoin.nix +++ b/hosts/hosea/bitcoin.nix @@ -19,6 +19,7 @@ in lnd.restPort lnd.port mempool.frontend.port + rtl.port ]; greg.backup.jobs = { @@ -69,6 +70,16 @@ in address = ip; }; }; + rtl = { + enable = true; + address = ip; + dataDir = "/chain/rtl"; + extraCurrency = "USD"; + nodes = { + clightning.enable = true; + lnd.enable = true; + }; + }; }; environment.systemPackages = with pkgs; [ ];