2022-12-04 13:45:43 +00:00
|
|
|
{pkgs, ...}: {
|
2024-07-24 17:48:59 +01:00
|
|
|
programs.vscode.extensions = with pkgs; [vscode-extensions.rust-lang.rust-analyzer];
|
2022-12-04 13:45:43 +00:00
|
|
|
home.packages = with pkgs; [rustc cargo clippy rust-analyzer rustfmt];
|
|
|
|
home.sessionVariables = {RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc;};
|
2022-11-11 16:32:26 +00:00
|
|
|
}
|