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