add dev helper and docs

This commit is contained in:
Erik Arvstedt 2023-01-15 20:27:51 +01:00
parent b35d08d3f2
commit b4d7e1aa8f
No known key found for this signature in database
GPG key ID: 33312B944DD97846
12 changed files with 746 additions and 1 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, lib, scenarios, nix-bitcoin }:
with lib;
rec {
# For more examples, see `scenarios` and `exampleScenarios` in ./src/test/tests.nix
template = { config, pkgs, lib, ... }: {
imports = [
(nix-bitcoin + "/modules/presets/secure-node.nix")
scenarios.netnsBase
scenarios.regtestBase
];
test.container.enableWAN = true;
test.container.exposeLocalhost = true;
};
myscenario = { config, pkgs, lib, ... }: {
services.clightning.enable = true;
nix-bitcoin.nodeinfo.enable = true;
};
}