Skip to content

Commit 9a29ead

Browse files
committed
Add Nix setup
1 parent 41b7048 commit 9a29ead

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

shell.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
with import <nixpkgs> {};
2+
stdenv.mkDerivation rec {
3+
name = "dev";
4+
env = buildEnv {
5+
name = name;
6+
paths = buildInputs;
7+
};
8+
buildInputs = [
9+
nodejs-12_x
10+
];
11+
}

0 commit comments

Comments
 (0)