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