Nixfiles/rustdev.nix

16 lines
187 B
Nix
Raw Normal View History

2022-02-06 21:21:40 +01:00
{
2022-05-01 10:32:31 +02:00
config,
pkgs,
lib,
...
}: {
2022-02-06 21:21:40 +01:00
home.sessionVariables = {
RUSTC_WRAPPER = "${pkgs.sccache}/bin/sccache";
};
home.packages = with pkgs; [
2022-02-06 21:38:03 +01:00
rustup
cargo-edit
2022-02-06 21:21:40 +01:00
];
}