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 ];
}
];