Add nix config files

This commit is contained in:
Rafael Taranto 2019-10-16 14:59:20 +01:00 committed by Josh Harvey
parent 91fc4e7cc2
commit 95a23a964b
2 changed files with 102 additions and 0 deletions

14
shell.nix Normal file
View file

@ -0,0 +1,14 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs-8_x
python2Full
openssl_1_0_2
postgresql_9_6
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}