Updating nix channels, requires responding to deprecations

This commit is contained in:
Haak Saxberg 2025-04-30 14:01:00 -07:00
parent d76b16ddc7
commit 7a7e3d56b2
3 changed files with 7 additions and 4 deletions

View file

@ -124,12 +124,13 @@ with builtins;
config = ''
lua << EOF
${readFile (
pkgs.substituteAll {
src = ./nvim-lspconfig.lua;
pkgs.replaceVars ./nvim-lspconfig.lua {
# since both of these are used for actually configuring the system,
# we'll probably always want them around.
lua_ls = pkgs.sumneko-lua-language-server;
nixd = pkgs.nixd;
ts_server = pkgs.nodePackages.typescript-language-server;
diagnostic_server = pkgs.nodePackages.diagnostic-languageserver;
}
) }
EOF