fix getenv

This commit is contained in:
nora 2023-09-30 10:18:04 +02:00
parent 9464ea4829
commit de90913d46
6 changed files with 25 additions and 92 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
buildInputs = with pkgs; [
rustup
];
shellHook = ''
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
'';
packages = (with pkgs; [
]);
}