17 lines
207 B
Nix
17 lines
207 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
config =
|
||
|
lib.mkIf config.host.nvim.enable-lsp
|
||
|
{
|
||
|
programs.nixvim = {
|
||
|
plugins.rust-tools = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|