Add initial dev shells

This commit is contained in:
Oliver Davies 2025-06-22 21:08:07 +01:00
commit c12dcc81fa
6 changed files with 90 additions and 0 deletions

9
modules/nodejs.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs }:
pkgs.mkShell {
packages = with pkgs; [
nodejs
nodePackages.pnpm
nodePackages.yarn
];
}