summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles
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 /nixos/modules/profiles
parentbd13ef5944a01f02006bcd4caafaaeba6a52d323 (diff)
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.
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 332cf58aa538..8d9fcba82067 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
};