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