Add nix shell

This commit is contained in:
BuyMyMojo 2025-03-25 03:55:58 +11:00
parent 54f1588091
commit c3970dca5b
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
5 changed files with 272 additions and 218 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = [
pkgs.nodejs
pkgs.pnpm
pkgs.biome
];
}