From 21aa2096e60bf5a8adf8b9427ba77e9985e64b00 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Sat, 20 Apr 2024 02:24:02 +0200 Subject: [PATCH] docs: explain setupOpts --- lib/types/plugins.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/plugins.nix b/lib/types/plugins.nix index 1ac74a6..1ffb330 100644 --- a/lib/types/plugins.nix +++ b/lib/types/plugins.nix @@ -90,7 +90,7 @@ in { */ mkPluginSetupOption = pluginName: opts: mkOption { - description = "Option table to pass into the setup function of " + pluginName; + 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;