diff --git a/options.html b/options.html index 8a905606b..a2e9d13d5 100644 --- a/options.html +++ b/options.html @@ -1428,14 +1428,15 @@ the fallback location, for example, Like nixpkgs.config this option only applies within the Home Manager configuration. See nixpkgs.config for a suggested setup that -works both internally and externally.

Type: null or (list of (nixpkgs overlay))

Default: null

Example:

[ (self: super: {
-    openssh = super.openssh.override {
+works both internally and externally.

Type: null or (list of (nixpkgs overlay))

Default: null

Example:

[
+  (final: prev: {
+    openssh = prev.openssh.override {
       hpnSupport = true;
       withKerberos = true;
-      kerberos = self.libkrb5;
+      kerberos = final.libkrb5;
     };
-  };
-) ]
+  })
+]
 

Declared by:

<home-manager/modules/misc/nixpkgs.nix>
pam.sessionVariables

Environment variables that will be set for the PAM session.