pinned pkgs: add bitcoind-knots

This commit is contained in:
Erik Arvstedt 2025-05-12 23:55:36 +02:00
parent b2bc5e6e75
commit 69090cddfa
No known key found for this signature in database
GPG key ID: 33312B944DD97846
2 changed files with 10 additions and 1 deletions

View file

@ -59,7 +59,15 @@ let
type = types.package;
default = config.nix-bitcoin.pkgs.bitcoind;
defaultText = "config.nix-bitcoin.pkgs.bitcoind";
description = "The package providing bitcoin binaries.";
description = ''
The package providing bitcoind binaries.
You can use this option to select other bitcoind-compatible implementations.
Example:
```nix
services.bitcoind.package = config.nix-bitcoin.pkgs.bitcoind-knots;
```
'';
};
extraConfig = mkOption {
type = types.lines;