nixos-configuration/home/rust.nix

9 lines
127 B
Nix
Raw Normal View History

2022-02-15 15:44:40 +01:00
{ pkgs, inputs, system, ... }: {
home.packages = with pkgs; [
cargo-edit
rust-analyzer
rustup
sccache
2022-02-18 12:13:34 +01:00
];
2022-02-15 15:44:40 +01:00
}