From 306b30cf62b09989092c9e297a9c76f035b1d067 Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Tue, 17 Dec 2024 15:18:59 -0800 Subject: [PATCH] container example: add clightning to flake, remove electrs Some of the commands listed in usage.sh require clightning to be enabled. This commit enables clightning so they will work. It also removes electrs to keep things simple, since electrs is not in usage.sh --- examples/container/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/container/flake.nix b/examples/container/flake.nix index d51d04c..c4f64a8 100644 --- a/examples/container/flake.nix +++ b/examples/container/flake.nix @@ -61,7 +61,7 @@ # Enable some services. # See ../configuration.nix for all available features. services.bitcoind.enable = true; - services.electrs.enable = true; + services.clightning.enable = true; }; }; };