switch to nil for Nix LSP
This commit is contained in:
parent
2d362c3c73
commit
defe57957a
2 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
languages = import ./languages.nix pkgs;
|
languages = import ./languages.nix { inherit pkgs inputs; };
|
||||||
theme = import ./theme.nix;
|
theme = import ./theme.nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
pkgs: {
|
{ pkgs, inputs }: {
|
||||||
language = with pkgs; [
|
language = with pkgs; [
|
||||||
{
|
{
|
||||||
language-server = {command = "${rust-analyzer}/bin/rust-analyer";};
|
language-server = {command = "${rust-analyzer}/bin/rust-analyer";};
|
||||||
|
@ -21,7 +21,7 @@ pkgs: {
|
||||||
name = "python";
|
name = "python";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
language-server = {command = "${rnix-lsp}/bin/rnix-lsp";};
|
language-server = {command = "${inputs.nil.packages.${pkgs.system}.nil}/bin/nil";};
|
||||||
name = "nix";
|
name = "nix";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue