From a97a1fa7393bbec9cb1ba29dfc8294158c0c64e1 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sun, 9 Mar 2025 14:37:38 +0000 Subject: [PATCH] deploy: cf47e7ea2182c5638fdd1b42de329cc7d185cf8b --- options.xhtml | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/options.xhtml b/options.xhtml index 4bd562999..04cefc4e2 100644 --- a/options.xhtml +++ b/options.xhtml @@ -8577,7 +8577,7 @@ absolute path (read only)

-

Extra directories to add to PATH.

These directories are added to the PATH variable in a +

Extra directories to prepend to PATH.

These directories are added to the PATH variable in a double-quoted context, so expressions like $HOME are expanded by the shell. However, since expressions like ~ or * are escaped, they will end up in the PATH @@ -8596,6 +8596,45 @@ list of string

] +

Declared by:

+ + +
+ +<home-manager/modules/home-environment.nix> + +
+
+
+ + home.sessionSearchVariables + + +
+
+

Extra directories to prepend to arbitrary PATH-like +environment variables (e.g.: MANPATH). The values +will be concatenated by :. +These directories are added to the environment variable in a +double-quoted context, so expressions like $HOME are +expanded by the shell. However, since expressions like ~ or +* are escaped, they will end up in the environment +verbatim.

+ +

Type: +attribute set of list of string

+ +

Default: +{ }

+ +

Example:

{
+  MANPATH = [
+    "$HOME/.npm-packages/man"
+    "\${xdg.configHome}/.local/share/man"
+  ];
+}
+
+

Declared by: