7 lines
266 B
Nix
7 lines
266 B
Nix
|
{ 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; };
|
||
|
}
|