From 2e4124e018fbc380aad4610483538a8966f03cf1 Mon Sep 17 00:00:00 2001 From: ncfavier Date: Tue, 28 Mar 2023 10:47:23 +0000 Subject: [PATCH] deploy: 765e4007b6f9f111469a25d1df6540e8e0ca73a6 --- options.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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.