nix-bitcoin/modules/modules.nix

43 lines
964 B
Nix
Raw Normal View History

{
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).
imports = [
2020-09-28 07:41:17 +00:00
# Core modules
./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
./bitcoind.nix
./clightning.nix
2020-11-19 02:01:45 +00:00
./clightning-plugins
./clightning-rest.nix
./clightning-replication.nix
./lnd.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
./lndconnect.nix # Requires onion-addresses.nix
./rtl.nix
2020-09-28 07:41:17 +00:00
./electrs.nix
2022-07-04 10:15:44 +00:00
./fulcrum.nix
2020-09-28 07:41:17 +00:00
./liquid.nix
./btcpayserver.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
# Support features
2020-10-12 11:33:48 +00:00
./versioning.nix
2020-09-28 07:41:17 +00:00
./security.nix
./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
./nodeinfo.nix
2020-09-28 07:41:17 +00:00
./backups.nix
];
disabledModules = [ "services/networking/bitcoind.nix" ];
}