From 3b494865b1f1482fda55638c1436425230acc3ac Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 5 Apr 2009 18:25:21 +0000 Subject: [PATCH] * Don't symlink all of /share as we don't need it and we end up with a zillion extra symlinks which is somewhat expensive. svn path=/nixos/trunk/; revision=14886 --- system/options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/options.nix b/system/options.nix index cfd81259fff..59c3001df3b 100644 --- a/system/options.nix +++ b/system/options.nix @@ -2986,7 +2986,7 @@ root ALL=(ALL) SETENV: ALL environment = { pathsToLink = mkOption { - default = ["/bin" "/sbin" "/lib" "/share" "/man" "/info" "/etc"]; + default = ["/bin" "/sbin" "/lib" "/share/man" "/share/info" "/man" "/info"]; example = ["/"]; description = " Lists directories to be symlinked in `/var/run/current-system/sw'.