This commit is contained in:
Campbell Alden 2026-03-18 23:38:29 +09:00
commit b975eef1f1
5 changed files with 1543 additions and 0 deletions

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {}, ... }: pkgs.mkShell {
buildInputs = [
pkgs.nodejs
pkgs.nodePackages.npm
];
}