aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: d3365c2e8bdf5d81d244f03f35faf7895108d33e (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 timer >/dev/null 2>&1
      tmuxinator local
    '';
  };
}