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

main
Vladimír Čunát 2 years ago
commit 90e10f361f
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 9
      nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix

@ -35,8 +35,15 @@ with lib;
# Enable sound in graphical iso's.
hardware.pulseaudio.enable = true;
# Spice guest additions
# VM guest additions to improve host-guest interaction
services.spice-vdagentd.enable = true;
services.qemuGuest.enable = true;
virtualisation.vmware.guest.enable = true;
virtualisation.hypervGuest.enable = true;
services.xe-guest-utilities.enable = true;
# 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;
# Enable plymouth
boot.plymouth.enable = true;

Loading…
Cancel
Save