mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
installer: enable vmware guest support on x86 only
The vmware guest module asserts on this exact condition, so let's only enable it on that condition.
This commit is contained in:
parent
9328b7eebf
commit
8f366cbfcc
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ with lib;
|
|||
# VM guest additions to improve host-guest interaction
|
||||
services.spice-vdagentd.enable = true;
|
||||
services.qemuGuest.enable = true;
|
||||
virtualisation.vmware.guest.enable = true;
|
||||
virtualisation.vmware.guest.enable = pkgs.stdenv.hostPlatform.isx86;
|
||||
virtualisation.hypervGuest.enable = true;
|
||||
services.xe-guest-utilities.enable = true;
|
||||
# The VirtualBox guest additions rely on an out-of-tree kernel module
|
||||
|
|
Loading…
Reference in a new issue