2020-03-04 09:08:46 -08:00
|
|
|
{
|
2021-08-15 02:28:47 -07:00
|
|
|
# The modules are topologically sorted by their dependencies.
|
|
|
|
# This means that modules only depend on modules higher in the list
|
|
|
|
# (unless otherwise noted).
|
2019-11-27 05:04:20 -08:00
|
|
|
imports = [
|
2020-09-28 00:41:17 -07:00
|
|
|
# Core modules
|
2021-08-15 02:28:45 -07:00
|
|
|
./nix-bitcoin.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./secrets/secrets.nix
|
2020-09-28 04:09:03 -07:00
|
|
|
./operator.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
|
|
|
|
# Main features
|
2019-11-27 05:04:20 -08:00
|
|
|
./bitcoind.nix
|
|
|
|
./clightning.nix
|
2020-11-18 18:01:45 -08:00
|
|
|
./clightning-plugins
|
2022-05-05 12:56:16 -07:00
|
|
|
./clightning-rest.nix
|
2022-01-06 04:40:52 -08:00
|
|
|
./clightning-replication.nix
|
2019-11-27 05:04:20 -08:00
|
|
|
./spark-wallet.nix
|
|
|
|
./lnd.nix
|
2020-07-07 07:22:17 -07:00
|
|
|
./lightning-loop.nix
|
2021-03-01 01:59:23 -08:00
|
|
|
./lightning-pool.nix
|
2021-06-01 18:11:26 -07:00
|
|
|
./charge-lnd.nix
|
2022-05-05 12:56:17 -07:00
|
|
|
./lndconnect-onion.nix # Requires onion-addresses.nix
|
2021-11-26 06:13:31 -08:00
|
|
|
./rtl.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./electrs.nix
|
2022-07-04 03:15:44 -07:00
|
|
|
./fulcrum.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./liquid.nix
|
2021-10-01 02:51:56 -07:00
|
|
|
./btcpayserver.nix
|
2020-04-23 09:18:47 -07:00
|
|
|
./joinmarket.nix
|
2021-01-17 04:24:57 -08:00
|
|
|
./joinmarket-ob-watcher.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./hardware-wallets.nix
|
|
|
|
|
|
|
|
# Support features
|
2020-10-12 04:33:48 -07:00
|
|
|
./versioning.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./security.nix
|
2021-01-14 04:24:10 -08:00
|
|
|
./onion-addresses.nix
|
2021-01-14 04:24:17 -08:00
|
|
|
./onion-services.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./netns-isolation.nix
|
2021-01-14 04:24:26 -08:00
|
|
|
./nodeinfo.nix
|
2020-09-28 00:41:17 -07:00
|
|
|
./backups.nix
|
2019-11-27 05:04:20 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
disabledModules = [ "services/networking/bitcoind.nix" ];
|
|
|
|
}
|