Add javascript shells

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-10-25 17:29:42 +01:00
parent 230aba8bc9
commit 39deb2a1a9
8 changed files with 32 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
nodejs
];
}