a4bfefd562
This allows using `lndconnect` via a direct WireGuard connection.
79 lines
1.9 KiB
Nix
79 lines
1.9 KiB
Nix
# Extra scenarios for developing and debugging
|
|
|
|
{ lib, scenarios }:
|
|
|
|
with lib;
|
|
{
|
|
btcpayserver-regtest = {
|
|
imports = [ scenarios.regtestBase ];
|
|
services.btcpayserver.enable = true;
|
|
test.container.exposeLocalhost = true;
|
|
# services.btcpayserver.lbtc = false;
|
|
|
|
# Required for testing interactive plugin installation
|
|
test.container.enableWAN = true;
|
|
};
|
|
|
|
# A node with internet access to test joinmarket-ob-watcher
|
|
jm-ob-watcher = {
|
|
services.joinmarket-ob-watcher.enable = true;
|
|
# Don't download blocks
|
|
services.bitcoind.extraConfig = ''
|
|
connect = 0;
|
|
'';
|
|
test.container.exposeLocalhost = true;
|
|
test.container.enableWAN = true;
|
|
};
|
|
|
|
rtl-dev = { config, pkgs, lib, ... }: {
|
|
imports = [
|
|
# scenarios.netnsBase
|
|
# scenarios.regtestBase
|
|
];
|
|
services.rtl = {
|
|
enable = true;
|
|
nodes.clightning = {
|
|
enable = true;
|
|
extraConfig.Settings.themeColor = "INDIGO";
|
|
};
|
|
# nodes.lnd.enable = false;
|
|
# services.rtl.nodes.reverseOrder = true;
|
|
nightTheme = true;
|
|
extraCurrency = "CHF";
|
|
};
|
|
test.container.exposeLocalhost = true;
|
|
nix-bitcoin.nodeinfo.enable = true;
|
|
# test.container.enableWAN = true;
|
|
};
|
|
|
|
wireguard-lndconnect-online = { config, pkgs, lib, ... }: {
|
|
imports = [
|
|
../modules/presets/wireguard.nix
|
|
scenarios.regtestBase
|
|
];
|
|
|
|
# 51820 (default wg port) + 1
|
|
networking.wireguard.interfaces.wg-nb.listenPort = 51821;
|
|
test.container.enableWAN = true;
|
|
# test.container.exposeLocalhost = true;
|
|
|
|
services.clightning.extraConfig = "disable-dns";
|
|
|
|
services.lnd = {
|
|
enable = true;
|
|
lndconnect = {
|
|
enable = true;
|
|
onion = true;
|
|
};
|
|
};
|
|
services.clightning-rest = {
|
|
enable = true;
|
|
lndconnect = {
|
|
enable = true;
|
|
onion = true;
|
|
};
|
|
};
|
|
nix-bitcoin.nodeinfo.enable = true;
|
|
};
|
|
}
|