users/foo-dogsquared/programs/nixvim: explicitly don't install Rust toolchain

This commit is contained in:
Gabriel Arazas 2024-03-03 10:53:42 +08:00
parent bb93e5ca7d
commit e4c1a45b2d
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -21,7 +21,13 @@
nil_ls.enable = true; # For Nix. nil_ls.enable = true; # For Nix.
nushell.enable = true; # For Nushell. nushell.enable = true; # For Nushell.
pyright.enable = true; # For Python. pyright.enable = true; # For Python.
rust-analyzer.enable = true; # For Rust (even though I barely use it).
# For Rust (even though I barely use it).
rust-analyzer = {
enable = true;
installRustc = false;
};
solargraph.enable = true; # For Ruby. solargraph.enable = true; # For Ruby.
tailwindcss.enable = true; # For Tailwind CSS. tailwindcss.enable = true; # For Tailwind CSS.
terraformls.enable = true; # For Terraform. terraformls.enable = true; # For Terraform.