osbm-nvim/plugins/lsp/nix.nix
2025-03-07 16:32:50 +03:00

12 lines
No EOL
310 B
Nix

{lib, pkgs, self, ...}: {
plugins.lsp.servers.nixd = {
enable = true;
settings = let flake = ''(builtins.getFlake "${self}")'';
in {
nixpkgs.expr = "import ${flake}.inputs.nixpkgs { }";
formatting = {
command = [ "${lib.getExe pkgs.nixfmt-rfc-style}" ];
};
};
};
}