environments with direnv and vm based config tests #9

Merged
steveej merged 30 commits from staging into master 2018-10-28 10:27:39 +00:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit 7210522683 - Show all commits

1
environments/rust/.envrc Normal file
View file

@ -0,0 +1 @@
use nix

View file

@ -0,0 +1,8 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
zsh
rustup
];
}