MyNixOS website logo

List of overlays to use with the Nix Packages collection. (For details, see the Nixpkgs documentation.) It allows you to override packages globally. Each function in the list takes as an argument the original Nixpkgs. The first argument should be used for finding dependencies, and the second should be used for overriding recipes.

If nixpkgs.pkgs is set, overlays specified here will be applied after the overlays that were already present in nixpkgs.pkgs.

Declarations
    Type
    list of (nixpkgs overlay)
    Default
    [ ]
    Example
    [
      (self: super: {
        openssh = super.openssh.override {
          hpnSupport = true;
          kerberos = self.libkrb5;
        };
      })
    ]