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