diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..afb9316 --- /dev/null +++ b/shell.nix @@ -0,0 +1,18 @@ +# https://nix.dev/tutorials/declarative-and-reproducible-developer-environments +with import { }; + +mkShell { + + # Package names can be found via https://search.nixos.org/packages + nativeBuildInputs = [ + nodejs_22 + sqlite + python3 + ]; + + # NIX_ENFORCE_PURITY = true; + + shellHook = '' + export PATH="$PWD/node_modules/.bin/:$PATH" + ''; +} \ No newline at end of file