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.
This commit is contained in:
Matthew Bauer 2018-09-24 14:39:57 -05:00
parent bd13ef5944
commit 2b7d6e463e

View File

@ -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
};