fallout from nix-channel updates

This commit is contained in:
Haak Saxberg 2024-06-28 01:56:41 -07:00
parent d263a20db3
commit 9e73352f7a
4 changed files with 7 additions and 16 deletions

View file

@ -148,7 +148,7 @@ with builtins;
# 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;
rnix_lsp = pkgs.rnix-lsp;
nixd = pkgs.nixd;
}
) }
EOF
@ -192,7 +192,7 @@ with builtins;
plugin = nvim-cmp;
config = ''
lua << EOF
${ readFile (./nvim-cmp.lua) }
${ readFile ./nvim-cmp.lua }
EOF
'';
}

View file

@ -160,8 +160,8 @@ nvim_lsp.tsserver.setup {
nvim_lsp.elixirls.setup {
cmd = { "elixir-ls" },
}
nvim_lsp.rnix.setup {
cmd = { "@rnix_lsp@/bin/rnix-lsp" },
nvim_lsp.nixd.setup {
cmd = { "@nixd@/bin/nixd" },
}
nvim_lsp.rust_analyzer.setup {}