nixos/virtualbox-guest: add vmware driver

VMSGVA is recommended by virtualbox for Linux clients.
Compared to VBoxVGA and VBoxSVGA it also supports 3D acceleration.

Adding the driver makes nixos work with all three supported graphics card
types.
wip/yesman
Pascal Bach 4 years ago
parent 9c300b6e2c
commit ec9792a3f5
  1. 2
      nixos/modules/virtualisation/virtualbox-guest.nix

@ -68,7 +68,7 @@ in
SUBSYSTEM=="misc", KERNEL=="vboxguest", TAG+="systemd"
'';
} (mkIf cfg.x11 {
services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" "modesetting" ];
services.xserver.videoDrivers = mkOverride 50 [ "vmware" "virtualbox" "modesetting" ];
services.xserver.config =
''

Loading…
Cancel
Save