nixos/home/modules/ide/nvim/lsp/langs/nix.nix
2025-11-16 01:03:19 +01:00

13 lines
244 B
Nix

{
plugins = {
lsp.servers = {
nixd = {
enable = true;
cmd = [ "nixd" ];
rootMarkers = [
"require('lspconfig.util').root_pattern('.nixd.json', 'flake.nix', '.git')"
];
};
};
};
}