]> gitweb.ps.run Git - l21s-case-study/blob - shell.nix
update
[l21s-case-study] / shell.nix
1 { pkgs ? import <nixpkgs> {} }:
2
3 pkgs.mkShell {
4
5   buildInputs = [
6     pkgs.postgresql
7     pkgs.postgresql_jdbc
8     pkgs.jdk
9   ];
10
11   shellHook = ''
12     exec ${pkgs.tmux}/bin/tmux \
13       new -d nvim src/ \; \
14       split -d -h \; \
15       neww -d ./db_start.sh \; \
16       a
17   '';
18
19 }