joinmarket/yieldgenerator: add docs link to description

This commit is contained in:
Erik Arvstedt 2024-07-29 11:22:47 +02:00
parent 5694408d3a
commit 74eb9a17b6
No known key found for this signature in database
GPG key ID: 33312B944DD97846

View file

@ -73,7 +73,14 @@ let
inherit (nbLib) cliExec; inherit (nbLib) cliExec;
yieldgenerator = { yieldgenerator = {
enable = mkEnableOption "JoinMarket yield generator bot"; enable = mkOption {
type = types.bool;
default = false;
description = ''
Enable the JoinMarket yield generator bot.
Documentation: https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/YIELDGENERATOR.md
'';
};
ordertype = mkOption { ordertype = mkOption {
type = types.enum [ "reloffer" "absoffer" ]; type = types.enum [ "reloffer" "absoffer" ];
default = "reloffer"; default = "reloffer";