docs: format text

This commit is contained in:
Ching Pei Yang 2024-04-20 14:24:00 +02:00 committed by Ching Pei Yang
parent 685176e94a
commit b682148337
1 changed files with 7 additions and 1 deletions

View File

@ -90,7 +90,13 @@ in {
*/
mkPluginSetupOption = pluginName: opts:
mkOption {
description = "Option table to pass into the setup function of " + pluginName + ". You can pass in any additional options even if they're not listed in the docs";
description = ''
Option table to pass into the setup function of ${pluginName}
You can pass in any additional options even if they're
not listed in the docs
'';
default = {};
type = submodule {
freeformType = attrsOf anything;