mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
environment: remove sbin from PATH
sbin is a symlink to bin. /run/current-system/sw/sbin and related profiles only contains packages, which have this symlink. It is a subset of bin.
This commit is contained in:
parent
37f59b3586
commit
539b091f6e
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ in
|
|||
|
||||
# TODO: move most of these elsewhere
|
||||
environment.profileRelativeEnvVars =
|
||||
{ PATH = [ "/bin" "/sbin" ];
|
||||
{ PATH = [ "/bin" ];
|
||||
INFOPATH = [ "/info" "/share/info" ];
|
||||
PKG_CONFIG_PATH = [ "/lib/pkgconfig" ];
|
||||
TERMINFO_DIRS = [ "/share/terminfo" ];
|
||||
|
|
Loading…
Reference in a new issue