summary refs log blame commit diff
path: root/pkgs/top-level/packages-config.nix
blob: 8ce855780cf9697333ebc0f824fa2516cc9fb4a9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                
# Used in the generation of package search database.
{
  # Ensures no aliases are in the results.
  allowAliases = false;

  # Enable recursion into attribute sets that nix-env normally doesn't look into
  # so that we can get a more complete picture of the available packages for the
  # purposes of the index.
  packageOverrides = super: {
    haskellPackages = super.recurseIntoAttrs super.haskellPackages;
    rPackages = super.recurseIntoAttrs super.rPackages;
  };
}