mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
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:
parent
8f366cbfcc
commit
373c1a8e43
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue