Without this, the services.lamassu-server option doesn't exist. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1,007 B
Nix
44 lines
1,007 B
Nix
{
|
|
# The modules are topologically sorted by their dependencies.
|
|
# This means that modules only depend on modules higher in the list
|
|
# (unless otherwise noted).
|
|
imports = [
|
|
# Core modules
|
|
./nix-bitcoin.nix
|
|
./secrets/secrets.nix
|
|
./operator.nix
|
|
|
|
# Main features
|
|
./bitcoind.nix
|
|
./clightning.nix
|
|
./clightning-plugins
|
|
./clightning-rest.nix
|
|
./clightning-replication.nix
|
|
./lnd.nix
|
|
./lightning-loop.nix
|
|
./lightning-pool.nix
|
|
./charge-lnd.nix
|
|
./lndconnect.nix # Requires onion-addresses.nix
|
|
./rtl.nix
|
|
./mempool.nix
|
|
./electrs.nix
|
|
./fulcrum.nix
|
|
./liquid.nix
|
|
./btcpayserver.nix
|
|
./joinmarket.nix
|
|
./joinmarket-ob-watcher.nix
|
|
./hardware-wallets.nix
|
|
./lamassu-lnbits.nix
|
|
|
|
# Support features
|
|
./versioning.nix
|
|
./security.nix
|
|
./onion-addresses.nix
|
|
./onion-services.nix
|
|
./netns-isolation.nix
|
|
./nodeinfo.nix
|
|
./backups.nix
|
|
];
|
|
|
|
disabledModules = [ "services/networking/bitcoind.nix" ];
|
|
}
|