mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
17 lines
266 B
Nix
17 lines
266 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
rust-analyzer
|
|
rustc
|
|
cargo
|
|
clippy
|
|
rustfmt
|
|
gnumake
|
|
cmake
|
|
llvm
|
|
gcc
|
|
];
|
|
|
|
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
|
|
rust-lang.rust-analyzer
|
|
];
|
|
}
|