add a shell.nix file

This commit is contained in:
Mike Heier 2024-03-21 19:59:14 -04:00
parent fd46047f8c
commit 6158ca2be4

5
default.nix Normal file
View File

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