11 lines
171 B
Nix
11 lines
171 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.nixvim.plugins.lsp.servers = {
|
|
rust_analyzer = {
|
|
enable = true;
|
|
installRustc = true;
|
|
installCargo = true;
|
|
};
|
|
};
|
|
}
|