From a97a1fa7393bbec9cb1ba29dfc8294158c0c64e1 Mon Sep 17 00:00:00 2001
From: khaneliman
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: