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: