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