lib/options: rename mkPackageOption to mkPluginPackageOption

This commit is contained in:
Gaetan Lepage 2024-05-17 14:09:20 +02:00 committed by Gaétan Lepage
parent 40598fc1bd
commit 26367692da
110 changed files with 111 additions and 111 deletions

View file

@ -155,12 +155,12 @@ rec {
mkNullable nixvimTypes.highlight default (if desc == "" then "Highlight settings." else desc);
};
mkPackageOption =
mkPluginPackageOption =
name: default:
mkOption {
type = types.package;
inherit default;
description = "Plugin to use for ${name}";
description = "Which package to use for the ${name} plugin.";
};
mkSettingsOption =