From 3ed207255390e825c0452575f8b8eda59698a0c1 Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:36:17 +0200 Subject: [PATCH] Create lightning-loop.nix --- system/bitcoin/lightning-loop.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 system/bitcoin/lightning-loop.nix diff --git a/system/bitcoin/lightning-loop.nix b/system/bitcoin/lightning-loop.nix new file mode 100644 index 0000000..6611379 --- /dev/null +++ b/system/bitcoin/lightning-loop.nix @@ -0,0 +1,10 @@ +### lightning-loop +{ + services.lightning-loop = { + # Set this to enable lightninglab's non-custodial off/on chain bridge. + enable = true; + # loopd (lightning-loop daemon) will be started automatically. Users can + # interact with off/on chain bridge using `loop in` and `loop out`. + # Automatically enables lnd. + }; +}