11 lines
162 B
Nix
11 lines
162 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs_20
|
|
gum
|
|
];
|
|
shellHook = ''
|
|
bash misc/enter-shell-hook.sh
|
|
'';
|
|
}
|