memo/shell.nix

21 lines
264 B
Nix
Raw Normal View History

2024-01-11 17:17:52 +03:00
{ pkgs ? import <nixpkgs> {} }: with pkgs;
mkShell {
buildInputs = [
redis
bun
];
shellHook =
''
echo "
__ __ ___ __ __ __
| V | __| V |/__\
| \_/ | _|| \_/ | \/ |
|_| |_|___|_| |_|\__/
"
redis-server &
bun run start
'';
}