mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
plugins: remove all use of lib.nixvim.mkPackageOption
This commit is contained in:
parent
84676128f8
commit
ae3a2c9d10
28 changed files with 73 additions and 95 deletions
|
@ -54,9 +54,13 @@ helpers.vim-plugin.mkVimPlugin {
|
|||
};
|
||||
|
||||
extraOptions = {
|
||||
texlivePackage = helpers.mkPackageOption {
|
||||
name = "texlive";
|
||||
default = pkgs.texlive.combined.scheme-medium;
|
||||
texlivePackage = lib.mkPackageOption pkgs "texlive" {
|
||||
nullable = true;
|
||||
default = [
|
||||
"texlive"
|
||||
"combined"
|
||||
"scheme-medium"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue