Pass virtualbox package as HAL package, so that the guest mouse cursor will follow the host mouse cursor

svn path=/nixos/trunk/; revision=17781
This commit is contained in:
Sander van der Burg 2009-10-13 14:30:37 +00:00
parent 50902d2e58
commit b9d9802c45

View File

@ -348,7 +348,8 @@ in
environment.systemPackages = config.environment.x11Packages; environment.systemPackages = config.environment.x11Packages;
services.hal.packages = halConfigFiles; services.hal.packages = halConfigFiles ++
optional (videoDriver == "vboxvideo") kernelPackages.virtualboxGuestAdditions;
jobs.xserver = jobs.xserver =
{ startOn = if cfg.autorun then "hal" else "never"; { startOn = if cfg.autorun then "hal" else "never";