Merge fort-nix/nix-bitcoin#673: Minor improvements
73d6d1e8cadev: move mempool to `dev-features.sh` (Erik Arvstedt)d61dc8b8d9test/README: fix typos (Erik Arvstedt)c1a7ab7b2fonion-services: fix markdown code formatting (Erik Arvstedt)4347125344nix-bitcoin: add example for option `pkgOverlays` (Erik Arvstedt)7e0d54a19adocs/services: improve lndconnect-wireguard docs (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK73d6d1e8caTree-SHA512: 6a3348711e3f0d314935086eb081c6d98c2e5654740106d2e11954560ae7adce3d29a9435746eafbc3ead47d696ba48c4f492e2ca3f4673ff65a9e24b8cfac3a
This commit is contained in:
commit
792e724897
6 changed files with 35 additions and 26 deletions
|
|
@ -20,6 +20,13 @@ with lib;
|
|||
pkgOverlays = mkOption {
|
||||
internal = true;
|
||||
type = with types; functionTo attrs;
|
||||
example = lib.literalExpression ''
|
||||
super: self: {
|
||||
bitcoind = super.bitcoind.overrideAttrs (old: {
|
||||
# dostuff
|
||||
});
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
lib = mkOption {
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ let
|
|||
default = config.public;
|
||||
description = mdDoc ''
|
||||
Create an onion service for the given service.
|
||||
The service must define options {option}'address' and {option}'onionPort' (or `port`).
|
||||
The service must define options {option}`address` and {option}`onionPort` (or `port`).
|
||||
'';
|
||||
};
|
||||
public = mkOption {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue