nix-bitcoin/modules/modules.nix

44 lines
982 B
Nix
Raw Normal View History

{
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).
imports = [
2020-09-28 10:41:17 +03:00
# Core modules
./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
./bitcoind.nix
./clightning.nix
2020-11-19 05:01:45 +03:00
./clightning-plugins
./clightning-rest.nix
./clightning-replication.nix
./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
./lndconnect.nix # Requires onion-addresses.nix
./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
./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
./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
./nodeinfo.nix
2020-09-28 10:41:17 +03:00
./backups.nix
];
disabledModules = [ "services/networking/bitcoind.nix" ];
}