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; [
bun
];
}

View File

@@ -5,8 +5,4 @@ pkgs.mkShell {
nil
nixpkgs-fmt
];
shellHook = ''
exec $SHELL
'';
}

View File

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

View File

@@ -11,8 +11,4 @@ pkgs.mkShell {
]
))
];
shellHook = ''
exec $SHELL
'';
}