Unverified Commit 90e10f36 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

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

parents 0a6b1ff6 fb4fc93a
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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;