treewide: remove obsolete mdDoc

This commit is contained in:
Erik Arvstedt 2024-07-15 20:31:27 +02:00
parent 83eb1de24b
commit fc703c38c9
No known key found for this signature in database
GPG key ID: 33312B944DD97846
34 changed files with 265 additions and 265 deletions

View file

@ -7,7 +7,7 @@ let
enable = mkOption {
type = types.bool;
default = false;
description = mdDoc ''
description = ''
Add a `lndconnect` binary to the system environment which prints
connection info for lnd clients.
See: https://github.com/LN-Zap/lndconnect
@ -25,7 +25,7 @@ let
onion = mkOption {
type = types.bool;
default = false;
description = mdDoc ''
description = ''
Create an onion service for the lnd REST server,
which is used by lndconnect.
'';
@ -37,7 +37,7 @@ let
enable = mkOption {
type = types.bool;
default = false;
description = mdDoc ''
description = ''
Add a `lndconnect-clightning` binary to the system environment which prints
connection info for clightning clients.
See: https://github.com/LN-Zap/lndconnect
@ -55,7 +55,7 @@ let
onion = mkOption {
type = types.bool;
default = false;
description = mdDoc ''
description = ''
Create an onion service for the clightning REST server,
which is used by lndconnect.
'';
@ -65,7 +65,7 @@ let
nix-bitcoin.mkLndconnect = mkOption {
readOnly = true;
default = mkLndconnect;
description = mdDoc ''
description = ''
A function to create a lndconnect binary.
See the source for further details.
'';