From fc48108756722dc738db6ea215f637eed728d330 Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:34:11 +0200 Subject: [PATCH] Create charge-lnd.nix --- system/bitcoin/charge-lnd.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 system/bitcoin/charge-lnd.nix diff --git a/system/bitcoin/charge-lnd.nix b/system/bitcoin/charge-lnd.nix new file mode 100644 index 0000000..98ef23d --- /dev/null +++ b/system/bitcoin/charge-lnd.nix @@ -0,0 +1,12 @@ +### charge-lnd +{ + services.charge-lnd = { + # Set this to enable charge-lnd, a simple policy based fee manager for + # LND. With this tool you can set fees to autobalance, recover channel open + # costs, use on-chain fees as reference, or just use static fees. You decide. + enable = true; + # Define policies as outlined in the project documentation. + policies = '' + ''; + }; +}