Nixfiles/rustdev.nix
2022-02-06 21:23:47 +01:00

12 lines
174 B
Nix

{ config, pkgs, lib, ... }:
{
home.sessionVariables = {
RUSTC_WRAPPER = "${pkgs.sccache}/bin/sccache";
};
home.packages = with pkgs; [
rustup
cargo-edit
];
}