1
0
forked from nixcn/nixcn-web

Add devenv to project

- Init devenv with node22 and corepack22
- Add devenv gitignore
- Direnv auto active devenv shell
- Update pnpm corepack version to 10.25.0
- Rerun pnpm install

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-09 13:28:51 +08:00
parent 26713548a1
commit bd0a9a1d92
7 changed files with 135 additions and 35 deletions

12
devenv.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ...}:
{
env.GREET = "devenv";
packages = [
pkgs.git
pkgs.nodejs_22
pkgs.corepack_22
pkgs.typescript-language-server
];
}