From d4c172469d4185328872725ddb8f8c3598fdbe07 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 12 Feb 2007 15:29:43 +0000 Subject: [PATCH] * Add $profile/sbin to the PATH. svn path=/nixos/trunk/; revision=7896 --- system/etc/profile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/etc/profile.sh b/system/etc/profile.sh index 738eb056ea7..b858f9e74b0 100644 --- a/system/etc/profile.sh +++ b/system/etc/profile.sh @@ -31,7 +31,7 @@ fi NIX_PROFILES="/nix/var/nix/profiles/default $NIX_USER_PROFILE_DIR/profile" for i in $NIX_PROFILES; do # !!! reverse - export PATH=$i/bin:$PATH + export PATH=$i/bin:$i/sbin:$PATH done