installer: enable xe-guest-utilities only on x86

Tries to find a target specific makefile for aarch64 which does not
exist.
This commit is contained in:
Martin Weinelt 2022-09-30 02:06:46 +02:00
parent 8f366cbfcc
commit 373c1a8e43
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -40,7 +40,7 @@ with lib;
services.qemuGuest.enable = true;
virtualisation.vmware.guest.enable = pkgs.stdenv.hostPlatform.isx86;
virtualisation.hypervGuest.enable = true;
services.xe-guest-utilities.enable = true;
services.xe-guest-utilities.enable = pkgs.stdenv.hostPlatform.isx86;
# The VirtualBox guest additions rely on an out-of-tree kernel module
# which lags behind kernel releases, potentially causing broken builds.
virtualisation.virtualbox.guest.enable = false;