file structure refactor

This commit is contained in:
Quentin Boyer 2022-02-06 21:21:40 +01:00
parent b1c4d7ab2f
commit 893764b9ae
9 changed files with 45 additions and 31 deletions

12
rustdev.nix Normal file
View file

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