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