nix-bitcoin/modules/modules.nix

41 lines
938 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
./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
./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" ];
}