memo/shell.nix
2024-01-11 21:14:26 +03:00

24 lines
335 B
Nix

{ pkgs ? import <nixpkgs> {} }: with pkgs;
mkShell {
buildInputs = [
redis
bun
];
shellHook =
''
echo "
__ __ ___ __ __ __
| V | __| V |/__\
| \_/ | _|| \_/ | \/ |
|_| |_|___|_| |_|\__/
"
redis-server &
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
bun run start
'';
}