Skip to content

Commit

Permalink
environment.profileRelativeEnvVars: remove sbin from example
Browse files Browse the repository at this point in the history
follow up of #25550
  • Loading branch information
Mic92 committed May 9, 2017
1 parent e060a5e commit ddb6d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/config/shells-environment.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ in

environment.profileRelativeEnvVars = mkOption {
type = types.attrsOf (types.listOf types.str);
example = { PATH = [ "/bin" "/sbin" ]; MANPATH = [ "/man" "/share/man" ]; };
example = { PATH = [ "/bin" ]; MANPATH = [ "/man" "/share/man" ]; };
description = ''
Attribute set of environment variable. Each attribute maps to a list
of relative paths. Each relative path is appended to the each profile
Expand Down

0 comments on commit ddb6d09

Please sign in to comment.