lnd, lightning-loop: improve `extraConfig` option description

This commit is contained in:
Erik Arvstedt 2022-07-07 16:08:26 +02:00
parent 739fa36785
commit 60a27d58a6
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
2 changed files with 10 additions and 2 deletions

View File

@ -46,7 +46,11 @@ let
example = '' example = ''
debuglevel=trace debuglevel=trace
''; '';
description = "Extra lines appended to the configuration file."; description = ''
Extra lines appended to the configuration file.
See here for all available options:
https://github.com/lightninglabs/loop/blob/11ab596080e9d36f1df43edbeba0702b25aa7457/loopd/config.go#L119
'';
}; };
cli = mkOption { cli = mkOption {
default = pkgs.writeScriptBin "loop" '' default = pkgs.writeScriptBin "loop" ''

View File

@ -76,7 +76,11 @@ let
example = '' example = ''
autopilot.active=1 autopilot.active=1
''; '';
description = "Extra lines appended to <filename>lnd.conf</filename>."; description = ''
Extra lines appended to `lnd.conf`.
See here for all available options:
https://github.com/lightningnetwork/lnd/blob/master/sample-lnd.conf
'';
}; };
package = mkOption { package = mkOption {
type = types.package; type = types.package;