--- /dev/null
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+
+ buildInputs = [
+ pkgs.postgresql
+ pkgs.postgresql_jdbc
+ pkgs.zulu
+ ];
+
+ shellHook = ''
+ ${pkgs.tmux}/bin/tmux \
+ new -d nvim src/ \; \
+ split -d -h \; \
+ neww -d ./db_start.sh \; \
+ a
+ '';
+
+}