build(nix): re-add shell.nix (#494)

Co-authored-by: nekowinston <hey@winston.sh>
This commit is contained in:
Hammy 2025-03-26 17:25:31 +00:00 committed by GitHub
parent 2191d356aa
commit 0757678839
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

12
shell.nix Normal file
View File

@ -0,0 +1,12 @@
{
pkgs ? import <nixpkgs> {
config = { };
overlays = [ ];
},
}:
pkgs.mkShell {
packages = with pkgs; [
nodejs_22
(pnpm.override { nodejs = nodejs_22; })
];
}