Nixfiles/rustdev.nix
Quentin Boyer 2d6006fd8c fmt
2022-02-06 21:38:21 +01:00

12 lines
180 B
Nix

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