* Some subdirectories should always be symlinked in the system path

when X11 is enabled (e.g. etc/xdg, share/icons...).

svn path=/nixos/trunk/; revision=23062
This commit is contained in:
Eelco Dolstra 2010-08-09 18:04:55 +00:00
parent ea1ba40374
commit 057602f3f2
2 changed files with 5 additions and 2 deletions

View file

@ -67,7 +67,7 @@ in
x11Packages = config.environment.kdePackages;
pathsToLink = [ "/etc/xdg" "/share" ];
pathsToLink = [ "/share" ];
etc = singleton
{ source = "${pkgs.xkeyboard_config}/etc/X11/xkb";

View file

@ -378,7 +378,10 @@ in
++ optional (elem "ati_unfree" driverNames) kernelPackages.ati_drivers_x11;
environment.systemPackages = config.environment.x11Packages;
environment.pathsToLink =
[ "/etc/xdg" "/share/xdg" "/share/applications" "/share/icons" "/share/pixmaps" ];
services.hal.packages = optional (elem "virtualbox" driverNames) kernelPackages.virtualboxGuestAdditions;
jobs.xserver =