aboutsummaryrefslogtreecommitdiff
path: root/overlays/nix/default.nix
blob: 8262fc1805de41730aa8e87572901939dc53342b (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 = [
      self.nix-bash-completions
      self.nix-diff
      self.nix-index
      self.nix-prefetch-git
      self.nix-prefetch-github
      self.nix-review
      self.nix-top
      self.nix-zsh-completions
    ];
  };
}