alys.phundrak.com/shell.nix

11 lines
162 B
Nix
Raw Normal View History

2024-03-09 09:44:46 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2024-06-27 05:56:08 +00:00
nativeBuildInputs = with pkgs; [
nodejs_20
gum
2024-03-09 09:44:46 +00:00
];
shellHook = ''
bash misc/enter-shell-hook.sh
2024-03-09 09:44:46 +00:00
'';
}