summaryrefslogtreecommitdiffstats
path: root/nixos/modules/config/system-environment.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/config/system-environment.nix')
-rw-r--r--nixos/modules/config/system-environment.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/nixos/modules/config/system-environment.nix b/nixos/modules/config/system-environment.nix
index 1e05ab7d0f2b..5b226d5079b0 100644
--- a/nixos/modules/config/system-environment.nix
+++ b/nixos/modules/config/system-environment.nix
@@ -39,26 +39,23 @@ in
environment.profileRelativeSessionVariables = mkOption {
type = types.attrsOf (types.listOf types.str);
example = { PATH = [ "/bin" ]; MANPATH = [ "/man" "/share/man" ]; };
- description = ''
+ description = lib.mdDoc ''
Attribute set of environment variable used in the global
environment. These variables will be set by PAM early in the
login process.
Variable substitution is available as described in
- <citerefentry>
- <refentrytitle>pam_env.conf</refentrytitle>
- <manvolnum>5</manvolnum>
- </citerefentry>.
+ {manpage}`pam_env.conf(5)`.
Each attribute maps to a list of relative paths. Each relative
path is appended to the each profile of
- <option>environment.profiles</option> to form the content of
+ {option}`environment.profiles` to form the content of
the corresponding environment variable.
Also, these variables are merged into
- <xref linkend="opt-environment.profileRelativeEnvVars"/> and it is
+ [](#opt-environment.profileRelativeEnvVars) and it is
therefore not possible to use PAM style variables such as
- <literal>@{HOME}</literal>.
+ `@{HOME}`.
'';
};