yig/shell.nix

12 lines
191 B
Nix
Raw Normal View History

2024-05-08 17:58:14 -05:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}