aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 84a4e29ac25c481f88372184ed2007509969ae75 (plain)
1
2
3
4
5
6
7
8
9
10
11
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = with pkgs; [
      nodePackages.nodemon
      stack
      tmux
      tmuxinator
    ];
  };
}