Add javascript shells
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
6
hosts/common/system/shells/bun/default.nix
Normal file
6
hosts/common/system/shells/bun/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
bun
|
||||
];
|
||||
}
|
@@ -5,8 +5,4 @@ pkgs.mkShell {
|
||||
nil
|
||||
nixpkgs-fmt
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
exec $SHELL
|
||||
'';
|
||||
}
|
||||
|
6
hosts/common/system/shells/nodejs/default.nix
Normal file
6
hosts/common/system/shells/nodejs/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
nodejs
|
||||
];
|
||||
}
|
@@ -11,8 +11,4 @@ pkgs.mkShell {
|
||||
]
|
||||
))
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
exec $SHELL
|
||||
'';
|
||||
}
|
||||
|
Reference in New Issue
Block a user