760da232e0
Not polluting the main pkgs namespace with internal pkgs makes it easier to integrate the nix-bitcoin modules into a larger config. Also, by overriding the nix-bitcoin namespace, users can now easily set the packages used by services that offer no explicit `package` option, like `clightning`.
34 lines
833 B
Nix
34 lines
833 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
nixpkgs-pinned = import ../pkgs/nixpkgs-pinned.nix;
|
|
unstable = import nixpkgs-pinned.nixpkgs-unstable {};
|
|
|
|
allPackages = pkgs: (import ../pkgs { inherit pkgs; }) // {
|
|
bitcoin = unstable.bitcoin.override { miniupnpc = null; };
|
|
bitcoind = unstable.bitcoind.override { miniupnpc = null; };
|
|
clightning = unstable.clightning;
|
|
lnd = unstable.lnd;
|
|
};
|
|
in {
|
|
imports = [
|
|
./bitcoind.nix
|
|
./clightning.nix
|
|
./lightning-charge.nix
|
|
./nanopos.nix
|
|
./nix-bitcoin-webindex.nix
|
|
./liquid.nix
|
|
./spark-wallet.nix
|
|
./electrs.nix
|
|
./onion-chef.nix
|
|
./recurring-donations.nix
|
|
./hardware-wallets.nix
|
|
./lnd.nix
|
|
];
|
|
|
|
disabledModules = [ "services/networking/bitcoind.nix" ];
|
|
|
|
nixpkgs.overlays = [ (self: super: {
|
|
nix-bitcoin = allPackages super;
|
|
}) ];
|
|
}
|