summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-30 02:06:46 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-11 15:33:42 +0200
commit373c1a8e4322ef86f659c29e828b0a82e7df3777 (patch)
tree8769387b15c072d4d068d839161c1a5c43d7b371 /nixos/modules/installer/cd-dvd
parent8f366cbfcc62871f481e035984e5932e30d8b0ed (diff)
downloadnixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.tar
nixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.tar.gz
nixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.tar.bz2
nixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.tar.lz
nixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.tar.xz
nixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.tar.zst
nixpkgs-373c1a8e4322ef86f659c29e828b0a82e7df3777.zip
installer: enable xe-guest-utilities only on x86
Tries to find a target specific makefile for aarch64 which does not
exist.
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
index b2a0ebb9e40..4a00c52916f 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
@@ -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;