2020-03-04 17:08:46 +00:00
|
|
|
{
|
2021-08-15 09:28:47 +00: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 13:04:20 +00:00
|
|
|
imports = [
|
2020-09-28 07:41:17 +00:00
|
|
|
# Core modules
|
2021-08-15 09:28:45 +00:00
|
|
|
./nix-bitcoin.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./secrets/secrets.nix
|
2020-09-28 11:09:03 +00:00
|
|
|
./operator.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
|
|
|
|
# Main features
|
2019-11-27 13:04:20 +00:00
|
|
|
./bitcoind.nix
|
|
|
|
./clightning.nix
|
2020-11-19 02:01:45 +00:00
|
|
|
./clightning-plugins
|
2019-11-27 13:04:20 +00:00
|
|
|
./spark-wallet.nix
|
|
|
|
./lnd.nix
|
2021-08-15 09:28:47 +00:00
|
|
|
./lnd-rest-onion-service.nix # Requires onion-addresses.nix
|
2020-07-07 14:22:17 +00:00
|
|
|
./lightning-loop.nix
|
2021-03-01 09:59:23 +00:00
|
|
|
./lightning-pool.nix
|
2021-06-02 01:11:26 +00:00
|
|
|
./charge-lnd.nix
|
2020-08-12 14:47:56 +00:00
|
|
|
./btcpayserver.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./electrs.nix
|
|
|
|
./liquid.nix
|
2020-04-23 16:18:47 +00:00
|
|
|
./joinmarket.nix
|
2021-01-17 12:24:57 +00:00
|
|
|
./joinmarket-ob-watcher.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./hardware-wallets.nix
|
|
|
|
./recurring-donations.nix
|
|
|
|
|
|
|
|
# Support features
|
2020-10-12 11:33:48 +00:00
|
|
|
./versioning.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./security.nix
|
2021-01-14 12:24:10 +00:00
|
|
|
./onion-addresses.nix
|
2021-01-14 12:24:17 +00:00
|
|
|
./onion-services.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./netns-isolation.nix
|
2021-01-14 12:24:26 +00:00
|
|
|
./nodeinfo.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./backups.nix
|
2019-11-27 13:04:20 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
disabledModules = [ "services/networking/bitcoind.nix" ];
|
|
|
|
}
|