about summary refs log tree commit diff
path: root/nixos/modules/profiles
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-09-24 23:21:02 +0200
committerGitHub <noreply@github.com>2018-09-24 23:21:02 +0200
commitbc22265e65ef8b3e0ae5d47befa9f223bd866cb1 (patch)
tree53b7000fdaa3871058b39c7eb3fe3031ae17f4d2 /nixos/modules/profiles
parent0ce90d58cca7a1318a50268e957f3faa3b80079c (diff)
parent1427c50cea8685daf8eb571301651cf347b27e23 (diff)
Merge pull request #47296 from matthewbauer/closure-size-reductions
ISO/OVA closure size reductions
Diffstat (limited to 'nixos/modules/profiles')
-rw-r--r--nixos/modules/profiles/graphical.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix
index 1a8372ddc43c4..fba756391b118 100644
--- a/nixos/modules/profiles/graphical.nix
+++ b/nixos/modules/profiles/graphical.nix
@@ -7,7 +7,10 @@
   services.xserver = {
     enable = true;
     displayManager.sddm.enable = true;
-    desktopManager.plasma5.enable = true;
+    desktopManager.plasma5 = {
+      enable = true;
+      enableQt4Support = false;
+    };
     libinput.enable = true; # for touchpad support on many laptops
   };