Merge fort-nix/nix-bitcoin#673: Minor improvements

73d6d1e8ca dev: move mempool to `dev-features.sh` (Erik Arvstedt)
d61dc8b8d9 test/README: fix typos (Erik Arvstedt)
c1a7ab7b2f onion-services: fix markdown code formatting (Erik Arvstedt)
4347125344 nix-bitcoin: add example for option `pkgOverlays` (Erik Arvstedt)
7e0d54a19a docs/services: improve lndconnect-wireguard docs (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    ACK 73d6d1e8ca

Tree-SHA512: 6a3348711e3f0d314935086eb081c6d98c2e5654740106d2e11954560ae7adce3d29a9435746eafbc3ead47d696ba48c4f492e2ca3f4673ff65a9e24b8cfac3a
This commit is contained in:
Jonas Nick 2024-01-16 11:56:43 +00:00
commit 792e724897
No known key found for this signature in database
GPG key ID: 4861DBF262123605
6 changed files with 35 additions and 26 deletions

View file

@ -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 {

View file

@ -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 {