From b68214833762f5024f70f41c953449b49bd20d63 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang <59727193+horriblename@users.noreply.github.com> Date: Sat, 20 Apr 2024 14:24:00 +0200 Subject: [PATCH] docs: format text --- lib/types/plugins.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/types/plugins.nix b/lib/types/plugins.nix index 1ffb330..6b5612c 100644 --- a/lib/types/plugins.nix +++ b/lib/types/plugins.nix @@ -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;