about summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorners <ners@gmx.ch>2022-05-17 10:36:59 +0200
committerners <ners@gmx.ch>2022-05-17 10:36:59 +0200
commitfb4fc93a3eacab755184924ae7bbb3d1e28e5575 (patch)
tree8395b3bde1590c6c46096928ffaab0c455942bd6 /nixos/modules/installer/cd-dvd
parent3458d4cf89e2f789197c7e3dbf2e3fd0f052ba1b (diff)
Remove mkDefault
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
index 5bf06cb3d1780..8c7bac6f6cc1c 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
@@ -36,14 +36,14 @@ with lib;
   hardware.pulseaudio.enable = true;
 
   # VM guest additions to improve host-guest interaction
-  services.spice-vdagentd.enable = mkDefault true;
-  services.qemuGuest.enable = mkDefault true;
-  virtualisation.vmware.guest.enable = mkDefault true;
-  virtualisation.hypervGuest.enable = mkDefault true;
-  services.xe-guest-utilities.enable = mkDefault 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 = mkDefault false;
+  virtualisation.virtualbox.guest.enable = false;
 
   # Enable plymouth
   boot.plymouth.enable = true;