1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

treewide: use mkPackageOption

Standardized interface to provide a consistent treewide experience.
This commit is contained in:
Austin Horstman 2025-03-30 14:28:32 -05:00
parent 579a71b948
commit b24689a173
62 changed files with 91 additions and 413 deletions

View file

@ -250,12 +250,8 @@ in {
'';
};
package = mkOption {
type = types.package;
default = pkgs.neovim-unwrapped;
defaultText = literalExpression "pkgs.neovim-unwrapped";
description = "The package to use for the neovim binary.";
};
package =
lib.mkPackageOption pkgs "neovim" { default = "neovim-unwrapped"; };
finalPackage = mkOption {
type = types.package;
@ -324,11 +320,8 @@ in {
coc = {
enable = mkEnableOption "Coc";
package = mkOption {
type = types.package;
default = pkgs.vimPlugins.coc-nvim;
defaultText = literalExpression "pkgs.vimPlugins.coc-nvim";
description = "The package to use for the CoC plugin.";
package = lib.mkPackageOption pkgs "coc-nvim" {
default = [ "vimPlugins" "coc-nvim" ];
};
settings = mkOption {