This commit is contained in:
nora 2023-09-23 13:29:52 +02:00
parent 42c95c9606
commit 699a3e1f3d
3 changed files with 267 additions and 386 deletions

View file

@ -12,7 +12,12 @@
devShells.default = pkgs.mkShell {
packages = with pkgs; [
gcc
rustup
];
shellHook = ''
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
export PATH=$PATH:''${RUSTUP_HOME:-~/.rustup}/toolchains/$RUSTC_VERSION-x86_64-unknown-linux-gnu/bin/
'';
};
});
}
}