mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 11:20:19 +01:00
12 lines
174 B
Nix
12 lines
174 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home.sessionVariables = {
|
|
RUSTC_WRAPPER = "${pkgs.sccache}/bin/sccache";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
rustup
|
|
cargo-edit
|
|
];
|
|
}
|