From a3fd861b6c2abd85a931c8c98de7e3357952e62d Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:38:22 +0200 Subject: [PATCH] Create lightning-pool.nix --- system/bitcoin/lightning-pool.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 system/bitcoin/lightning-pool.nix diff --git a/system/bitcoin/lightning-pool.nix b/system/bitcoin/lightning-pool.nix new file mode 100644 index 0000000..3f6f861 --- /dev/null +++ b/system/bitcoin/lightning-pool.nix @@ -0,0 +1,15 @@ +### lightning-pool +{ + # Set this to enable Lightning Lab's non-custodial batched uniform + # clearing-price auction for Lightning Channel Leases. + # services.lightning-pool.enable = true; + # + services.lightning-pool.enable = true; + # + # Use the `pool` command to interact with the lightning-pool service. + # Automatically enables lnd. + # + # lightning-pool requires that lnd has a publicly reachable address. + # Set this to create a public onion service for lnd. + # nix-bitcoin.onionServices.lnd.public = true; +}