Add nix config

This commit is contained in:
CheddarCrisp 2024-04-12 12:15:45 -04:00
parent 5b504ae3d6
commit bf43bdba09

7
shell.nix Normal file
View file

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