nixos-configuration/home/rust.nix

14 lines
242 B
Nix
Raw Normal View History

2022-02-15 15:44:40 +01:00
{ pkgs, inputs, system, ... }: {
home.packages = with pkgs; [
cargo-edit
2022-05-11 12:24:02 +02:00
llvmPackages_latest.bintools
llvmPackages_latest.ldd
llvmPackages_latest.llvm
2022-02-15 15:44:40 +01:00
rust-analyzer
rustup
sccache
2022-05-11 12:24:02 +02:00
xorriso
zlib.out
2022-02-18 12:13:34 +01:00
];
2022-02-15 15:44:40 +01:00
}