aboutsummaryrefslogtreecommitdiff
path: root/overlays/nix/default.nix
blob: 175f8447137fb597badf787f3d37cc9ae7e3ce72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
self: super:
{
  nix-tools = super.buildEnv {
    name = "nix-tools";
    ignoreCollisions = true;
    paths = with self;[
      nix-bash-completions
      nix-diff
      nix-index
      nix-prefetch-git
      nix-prefetch-github
      nix-review
      nix-top
      nix-zsh-completions
    ];
  };
}