Nixfiles/rustdev.nix

13 lines
174 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; [
rustup
cargo-edit
];
}