Nixfiles/rustdev.nix

13 lines
180 B
Nix
Raw Normal View History

2022-02-06 21:21:40 +01:00
{ config, pkgs, lib, ... }:
{
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
];
}