Merge #172668: installation-cd: add more guest tools to NixOS graphical installation base

+8 -1
+8 -1
nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
··· 35 # Enable sound in graphical iso's. 36 hardware.pulseaudio.enable = true; 37 38 - # Spice guest additions 39 services.spice-vdagentd.enable = true; 40 41 # Enable plymouth 42 boot.plymouth.enable = true;
··· 35 # Enable sound in graphical iso's. 36 hardware.pulseaudio.enable = true; 37 38 + # VM guest additions to improve host-guest interaction 39 services.spice-vdagentd.enable = true; 40 + services.qemuGuest.enable = true; 41 + virtualisation.vmware.guest.enable = true; 42 + virtualisation.hypervGuest.enable = true; 43 + services.xe-guest-utilities.enable = true; 44 + # The VirtualBox guest additions rely on an out-of-tree kernel module 45 + # which lags behind kernel releases, potentially causing broken builds. 46 + virtualisation.virtualbox.guest.enable = false; 47 48 # Enable plymouth 49 boot.plymouth.enable = true;