mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-24 02:34:15 -05:00
modules/dependencies: fix enable option description
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user