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:
parent
771cb3c852
commit
081bcc930f
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue