summary refs log tree commit diff
path: root/nixos
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
parent0ce90d58cca7a1318a50268e957f3faa3b80079c (diff)
parent1427c50cea8685daf8eb571301651cf347b27e23 (diff)
downloadnixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.tar
nixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.tar.gz
nixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.tar.bz2
nixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.tar.lz
nixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.tar.xz
nixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.tar.zst
nixlib-bc22265e65ef8b3e0ae5d47befa9f223bd866cb1.zip
Merge pull request #47296 from matthewbauer/closure-size-reductions
ISO/OVA closure size reductions
Diffstat (limited to 'nixos')
-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 1a8372ddc43c..fba756391b11 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
   };