pkgs(nixvim): Add basic lsp support for nix language

This commit is contained in:
ulic-youthlic 2025-07-13 06:04:55 +08:00
parent 419edec01f
commit cdf7e9908a
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721

View file

@ -1,2 +1,11 @@
{...}: {
plugins.lspconfig.enable = true;
lsp = {
inlayHints.enable = true;
servers = {
nixd = {
enable = true;
};
};
};
}