aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: cc4be36e98c87b51854306a8b8507818c3e1d87f (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 = [
      cabal-install
      cabal2nix
      tmux
      tmuxinator
    ];
    shellHook = ''
      tmux kill-session -t leboncoin-listener >/dev/null 2>&1
      tmuxinator local
    '';
  };
}