docs: optionally add a description to plugins

This commit is contained in:
Gaetan Lepage 2024-03-21 12:04:09 +01:00 committed by Gaétan Lepage
parent 2d4ebda245
commit 848543d527
4 changed files with 24 additions and 7 deletions

View file

@ -35,6 +35,7 @@ with lib; rec {
maintainers,
url ? defaultPackage.meta.homepage,
imports ? [],
description ? null,
# deprecations
deprecateExtraOptions ? false,
optionsRenamedToSettings ? [],
@ -62,7 +63,11 @@ with lib; rec {
meta = {
inherit maintainers;
nixvimInfo = {
inherit name url;
inherit
description
name
url
;
kind = namespace;
};
};