From 5c38b357da7e8c870350cd1847fb5b2602a28eb0 Mon Sep 17 00:00:00 2001 From: Gerg-L <88247690+Gerg-L@users.noreply.github.com> Date: Sat, 21 Feb 2026 15:06:40 -0500 Subject: [PATCH] Merge pull request #1415 from Gerg-L/python3Fix wrapper/build: include pynvim in python3.extraPackages by default --- modules/wrapper/build/config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wrapper/build/config.nix b/modules/wrapper/build/config.nix index 72af1071..dc4bebe5 100644 --- a/modules/wrapper/build/config.nix +++ b/modules/wrapper/build/config.nix @@ -94,7 +94,7 @@ nodeJs.enable = config.vim.withNodeJs; python3 = { enable = config.vim.withPython3; - extraPackages = ps: map (flip builtins.getAttr ps) config.vim.python3Packages; + extraPackages = ps: (map (flip builtins.getAttr ps) config.vim.python3Packages) ++ [ps.pynvim]; }; };