2019-11-27 13:04:23 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2019-11-27 13:04:20 +00:00
|
|
|
|
2020-12-21 11:19:15 +00:00
|
|
|
with lib;
|
2020-03-04 17:08:46 +00:00
|
|
|
{
|
2019-11-27 13:04:20 +00:00
|
|
|
imports = [
|
2020-09-28 07:41:17 +00:00
|
|
|
# Core modules
|
|
|
|
./secrets/secrets.nix
|
2020-09-28 11:09:03 +00:00
|
|
|
./operator.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
|
|
|
|
# Main features
|
2019-11-27 13:04:20 +00:00
|
|
|
./bitcoind.nix
|
|
|
|
./clightning.nix
|
2020-11-19 02:01:45 +00:00
|
|
|
./clightning-plugins
|
2019-11-27 13:04:20 +00:00
|
|
|
./spark-wallet.nix
|
|
|
|
./lnd.nix
|
2021-02-03 21:44:43 +00:00
|
|
|
./lnd-rest-onion-service.nix
|
2020-07-07 14:22:17 +00:00
|
|
|
./lightning-loop.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
|
2021-01-14 12:24:10 +00:00
|
|
|
./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
|
2021-01-14 12:24:26 +00:00
|
|
|
./nodeinfo.nix
|
2020-09-28 07:41:17 +00:00
|
|
|
./backups.nix
|
2019-11-27 13:04:20 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
disabledModules = [ "services/networking/bitcoind.nix" ];
|
|
|
|
|
2019-11-27 13:04:23 +00:00
|
|
|
options = {
|
2020-12-21 11:19:15 +00:00
|
|
|
nix-bitcoin = {
|
|
|
|
pkgs = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
default = (import ../pkgs { inherit pkgs; }).modulesPkgs;
|
|
|
|
};
|
|
|
|
|
2021-02-03 21:44:41 +00:00
|
|
|
lib = mkOption {
|
|
|
|
readOnly = true;
|
|
|
|
default = import ../pkgs/lib.nix lib pkgs;
|
|
|
|
};
|
|
|
|
|
2020-12-21 11:19:15 +00:00
|
|
|
# Torify binary that works with custom Tor SOCKS addresses
|
|
|
|
# Related issue: https://github.com/NixOS/nixpkgs/issues/94236
|
|
|
|
torify = mkOption {
|
|
|
|
readOnly = true;
|
|
|
|
default = pkgs.writeScriptBin "torify" ''
|
|
|
|
${pkgs.tor}/bin/torify \
|
|
|
|
--address ${head (splitString ":" config.services.tor.client.socksListenAddress)} \
|
|
|
|
"$@"
|
|
|
|
'';
|
|
|
|
};
|
2020-11-09 21:09:09 +00:00
|
|
|
};
|
2019-11-27 13:04:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2020-06-15 10:21:18 +00:00
|
|
|
assertions = [
|
2021-01-14 12:24:04 +00:00
|
|
|
{ assertion = (config.services.lnd.enable -> ( !config.services.clightning.enable || config.services.clightning.port != config.services.lnd.port));
|
2020-06-15 10:21:18 +00:00
|
|
|
message = ''
|
2020-08-04 07:54:01 +00:00
|
|
|
LND and clightning can't both bind to lightning port 9735. Either
|
|
|
|
disable LND/clightning or change services.clightning.bindPort or
|
2021-01-14 12:24:03 +00:00
|
|
|
services.lnd.port to a port other than 9735.
|
2020-06-15 10:21:18 +00:00
|
|
|
'';
|
|
|
|
}
|
|
|
|
];
|
2019-11-27 13:04:23 +00:00
|
|
|
};
|
2019-11-27 13:04:20 +00:00
|
|
|
}
|