mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 02:38:38 +02:00
misc: fix python packages option name
This commit is contained in:
parent
d52f656a8b
commit
c795b2ee40
3 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ in {
|
||||||
description = "Extra packages to be made available to neovim";
|
description = "Extra packages to be made available to neovim";
|
||||||
};
|
};
|
||||||
|
|
||||||
extraPythonPackages = mkOption {
|
extraPython3Packages = mkOption {
|
||||||
type = with types; functionTo (listOf package);
|
type = with types; functionTo (listOf package);
|
||||||
default = p: [];
|
default = p: [];
|
||||||
defaultText = literalExpression "p: with p; [ ]";
|
defaultText = literalExpression "p: with p; [ ]";
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
plain = {};
|
plain = {};
|
||||||
|
|
||||||
python-packages = {
|
python-packages = {
|
||||||
extraPythonPackages = p:
|
extraPython3Packages = p:
|
||||||
with p; [
|
with p; [
|
||||||
numpy
|
numpy
|
||||||
];
|
];
|
||||||
|
|
|
@ -102,7 +102,7 @@ in {
|
||||||
neovimConfig = pkgs.neovimUtils.makeNeovimConfig ({
|
neovimConfig = pkgs.neovimUtils.makeNeovimConfig ({
|
||||||
inherit
|
inherit
|
||||||
(config)
|
(config)
|
||||||
extraPythonPackages
|
extraPython3Packages
|
||||||
viAlias
|
viAlias
|
||||||
vimAlias
|
vimAlias
|
||||||
;
|
;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue