Setup direnv with `use nix` for haskell stack

Yvan Sraka 3 years ago
parent 3373e07bb0
commit 405bbfff56

@ -0,0 +1 @@
use nix

3
.gitignore vendored

@ -1,4 +1,5 @@
_cache/
_site/
.stack-work/
.direnv
.DS_Store
.stack-work/

@ -0,0 +1,6 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
stack
];
}
Loading…
Cancel
Save