Add shell.nix

This commit is contained in:
Chandler Swift 2026-01-18 20:54:34 -06:00
parent 600c037ab3
commit 1fdef9ddda
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShellNoCC {
packages = with pkgs; [
nodejs
];
}