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
This commit is contained in:
Sean Gilligan 2024-12-17 15:18:59 -08:00
parent 32b59a6b84
commit 306b30cf62

View file

@ -61,7 +61,7 @@
# Enable some services. # Enable some services.
# See ../configuration.nix for all available features. # See ../configuration.nix for all available features.
services.bitcoind.enable = true; services.bitcoind.enable = true;
services.electrs.enable = true; services.clightning.enable = true;
}; };
}; };
}; };