added nodejs to shell.nix

This commit is contained in:
Geir Okkenhaug Jerstad 2024-11-23 12:55:05 +01:00
parent 8186c067dc
commit 14896d4168

View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ nodejs ];
}