osbm-nvim/plugins/lsp/nix.nix
2025-03-07 16:40:15 +03:00

10 lines
292 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}" ];
};
};
}