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
1 changed files with 2 additions and 1 deletions

View File

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