aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 9b7de69c7b930fb33e8e90c44ab54889e72822c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = [
      elmPackages.elm
      nodejs
      tmux
      tmuxinator
    ];
    shellHook = ''
      tmux kill-session -t catchvoid >/dev/null 2>&1
      tmuxinator local
    '';
  };
}