Update shell.nix

This commit is contained in:
Aaron Honeycutt 2023-03-31 13:21:32 +00:00
parent 46aba856cd
commit ae3519cd49

View file

@ -1,7 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.buildPackages.nodejs-16_x
pkgs.buildPackages.nodePackages.npm
nativeBuildInputs = with pkgs; [
nodejs-16_x
nodePackages.npm
];
}