nix-bitcoin/modules/modules.nix

44 lines
993 B
Nix
Raw Normal View History

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