nixfiles/profiles/home-manager/programming/languages/rust.nix
2024-07-24 14:13:59 +01:00

6 lines
256 B
Nix

{pkgs, ...}: {
programs.vscode-mod.extensions = with pkgs; [vscode-extensions.rust-lang.rust-analyzer];
home.packages = with pkgs; [rustc cargo clippy rust-analyzer rustfmt];
home.sessionVariables = {RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc;};
}