This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
matrix-wug/shell.nix
Daniel Løvbrøtte Olsen fdc409d166 Nix shell stuff
2019-02-25 21:20:43 +01:00

9 lines
166 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [ nodejs ];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}