summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-09-24 14:39:57 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-09-24 15:07:25 -0500
commit2b7d6e463e0d278b4811c2a270814342fd1abf94 (patch)
tree0a9ec0b9e66a6dd07a38d0401eb0d43cec732923
parentbd13ef5944a01f02006bcd4caafaaeba6a52d323 (diff)
downloadnixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.tar
nixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.tar.gz
nixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.tar.bz2
nixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.tar.lz
nixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.tar.xz
nixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.tar.zst
nixpkgs-2b7d6e463e0d278b4811c2a270814342fd1abf94.zip
nixos: don’t enableQt4Support for installer profile
This is already done in
installer/cd-dvd/installation-cd-graphical-kde.nix but not in
profiles/graphical.nix. Related to #47256.
-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 332cf58aa53..8d9fcba8206 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
   };