query
On this page

appendOverlays

pkgs.appendOverlays

Docs pulled from | This Revision | about 3 hours ago


Nixpkgs manual

in one go when calling Nixpkgs, for performance and simplicity.

Noogle detected

Implementation

The following is the current implementation of this function.

appendOverlays =
      extraOverlays:
      if extraOverlays == [ ] then
        self.__splicedPackages
      else
        nixpkgsFun { overlays = args.overlays ++ extraOverlays; };