Skip to content

Commit

Permalink
nix: add shell.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jomik committed Mar 21, 2019
1 parent 8269a0b commit 907aac3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ typings/
.env

.vscode/
.envrc
.direnv/
9 changes: 9 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
with import <nixpkgs> {};

let
inherit (pkgs) mkShell;
in mkShell {
buildInputs = with pkgs; [
nodejs-11_x
];
}

0 comments on commit 907aac3

Please sign in to comment.