1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-18 14:28:15 +00:00

tests/neovide: fix deprecation

This commit is contained in:
Austin Horstman 2025-03-07 13:50:10 -06:00
parent d2c014e1c7
commit 3ade654257

View file

@ -34,8 +34,8 @@ lib.mkIf config.test.enableBig {
extraLuaPackages = ps: with ps; [ luacheck ];
}
{
extraPython3Packages = with pkgs.python3Packages; [ jedi pynvim ];
extraLuaPackages = with pkgs.lua51Packages; [ luacheck ];
extraPython3Packages = ps: with ps; [ jedi pynvim ];
extraLuaPackages = ps: with ps; [ luacheck ];
}
];