nixfiles/home/programming/languages/rust.nix

7 lines
266 B
Nix
Raw Normal View History

2022-11-11 16:32:26 +00:00
{ pkgs, ... }: {
programs.vscode-mod.extensions = with pkgs;
[ vscode-extensions.matklad.rust-analyzer ];
home.packages = with pkgs; [ rustc cargo clippy rust-analyzer rustfmt ];
home.sessionVariables = { RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc; };
}