1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-18 23:11:12 +01:00

modules/dependencies: fix enable option description

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-12-17 00:26:29 +01:00 committed by Gaétan Lepage
parent 771cb3c852
commit 081bcc930f

View file

@ -10,7 +10,11 @@ let
cfg = config.dependencies;
mkDependencyOption = name: properties: {
enable = lib.mkEnableOption "Add ${name} to dependencies.";
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to add ${name} to dependencies.";
};
package =
lib.mkPackageOption pkgs name properties