Updates for rust develpopment and added ledger back

This commit is contained in:
Random936
2025-09-27 11:01:39 -07:00
parent 325f31cb2a
commit 340109e73b
3 changed files with 18 additions and 5 deletions

View File

@@ -1,10 +1,22 @@
{ pkgs, ... }: {
{ home, pkgs, ... }: {
home.packages = with pkgs; [
# C/C++
clang
clang-tools
cargo
python3
gnumake
clang-tools
# Rust
rustc
cargo
rust-analyzer
# Other
python3
ansible
];
# To prevent sysroot errors in rust-analyzer
home.sessionVariables = {
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
};
}