2019-11-27 05:04:23 -08:00
|
|
|
{ config, pkgs, lib, ... }:
|
2019-11-27 05:04:20 -08:00
|
|
|
|
2020-03-04 09:08:46 -08:00
|
|
|
{
|
2019-11-27 05:04:20 -08:00
|
|
|
imports = [
|
|
|
|
./bitcoind.nix
|
|
|
|
./clightning.nix
|
|
|
|
./lightning-charge.nix
|
|
|
|
./nanopos.nix
|
|
|
|
./liquid.nix
|
|
|
|
./spark-wallet.nix
|
|
|
|
./electrs.nix
|
|
|
|
./onion-chef.nix
|
|
|
|
./recurring-donations.nix
|
|
|
|
./hardware-wallets.nix
|
|
|
|
./lnd.nix
|
2020-07-07 07:22:17 -07:00
|
|
|
./lightning-loop.nix
|
2020-01-12 11:52:38 -08:00
|
|
|
./secrets/secrets.nix
|
2020-05-29 03:53:35 -07:00
|
|
|
./netns-isolation.nix
|
2020-08-20 04:11:06 -07:00
|
|
|
./security.nix
|
2020-06-11 04:39:17 -07:00
|
|
|
./backups.nix
|
2020-08-12 07:47:56 -07:00
|
|
|
./btcpayserver.nix
|
2020-04-23 09:18:47 -07:00
|
|
|
./joinmarket.nix
|
2019-11-27 05:04:20 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
disabledModules = [ "services/networking/bitcoind.nix" ];
|
|
|
|
|
2019-11-27 05:04:23 -08:00
|
|
|
options = {
|
|
|
|
nix-bitcoin-services = lib.mkOption {
|
|
|
|
readOnly = true;
|
2020-05-22 06:59:18 -07:00
|
|
|
default = import ./nix-bitcoin-services.nix lib pkgs;
|
2019-11-27 05:04:23 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2020-06-15 03:21:18 -07:00
|
|
|
assertions = [
|
2020-08-04 00:54:01 -07:00
|
|
|
{ assertion = (config.services.lnd.enable -> ( !config.services.clightning.enable || config.services.clightning.bindport != config.services.lnd.listenPort));
|
2020-06-15 03:21:18 -07:00
|
|
|
message = ''
|
2020-08-04 00:54:01 -07:00
|
|
|
LND and clightning can't both bind to lightning port 9735. Either
|
|
|
|
disable LND/clightning or change services.clightning.bindPort or
|
|
|
|
services.lnd.listenPort to a port other than 9735.
|
2020-06-15 03:21:18 -07:00
|
|
|
'';
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2019-11-27 05:04:23 -08:00
|
|
|
nixpkgs.overlays = [ (self: super: {
|
2020-03-04 09:08:46 -08:00
|
|
|
nix-bitcoin = let
|
|
|
|
pkgs = import ../pkgs { pkgs = super; };
|
|
|
|
in
|
|
|
|
pkgs // pkgs.pinned;
|
2019-11-27 05:04:23 -08:00
|
|
|
}) ];
|
|
|
|
};
|
2019-11-27 05:04:20 -08:00
|
|
|
}
|