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