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

This commit is contained in:
Vladimír Čunát 2022-05-19 10:51:01 +02:00
commit 90e10f361f
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

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