We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9eccdb4 + cd16ea2 commit fef2e4eCopy full SHA for fef2e4e
nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
@@ -32,7 +32,9 @@
32
services.spice-vdagentd.enable = true;
33
services.qemuGuest.enable = true;
34
virtualisation.vmware.guest.enable = pkgs.stdenv.hostPlatform.isx86;
35
- virtualisation.hypervGuest.enable = true;
+ # https://github.com/torvalds/linux/blob/00b827f0cffa50abb6773ad4c34f4cd909dae1c8/drivers/hv/Kconfig#L7-L8
36
+ virtualisation.hypervGuest.enable =
37
+ pkgs.stdenv.hostPlatform.isx86 || pkgs.stdenv.hostPlatform.isAarch64;
38
services.xe-guest-utilities.enable = pkgs.stdenv.hostPlatform.isx86;
39
# The VirtualBox guest additions rely on an out-of-tree kernel module
40
# which lags behind kernel releases, potentially causing broken builds.
0 commit comments