3a606608fb
Disabling upnp via compilation brings no substantial security benefits. There's no way to inadvertently enable upnp, it must be set explicitly via bitcoind.extraConfig. But it's a huge hassle for new users who have to recompile bitcoind before being able to use nix-bitcoin. Also, elementsd is currently built with upnp support by default.
14 lines
316 B
Nix
14 lines
316 B
Nix
let
|
|
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
|
unstable = import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; };
|
|
nixBitcoinPkgsUnstable = import ./. { pkgs = unstable; };
|
|
in
|
|
{
|
|
inherit (unstable)
|
|
bitcoin
|
|
bitcoind
|
|
clightning
|
|
lnd;
|
|
inherit (nixBitcoinPkgsUnstable) electrs;
|
|
}
|