Skip to content

Commit

Permalink
installer: enable vmware guest support on x86 only
Browse files Browse the repository at this point in the history
The vmware guest module asserts on this exact condition, so let's only
enable it on that condition.
  • Loading branch information
mweinelt committed Oct 11, 2022
1 parent 9328b7e commit 8f366cb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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
Expand Down

0 comments on commit 8f366cb

Please sign in to comment.