Merge #172668: installation-cd: add more guest tools to NixOS graphical installation base
This commit is contained in:
commit
90e10f361f
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue