about summary refs log tree commit diff
path: root/nixos/modules/profiles
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-02-09 21:25:03 -0500
committerGraham Christensen <graham@grahamc.com>2017-02-09 21:52:00 -0500
commitb12564cc1b8319b317d98df03fec8ba4bbf71877 (patch)
treec0a656ef4db5d571760b9d4265c4d57ba425d7c6 /nixos/modules/profiles
parent400048926602dfe559207123267b183ac7e97c6b (diff)
downloadnixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.tar
nixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.tar.gz
nixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.tar.bz2
nixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.tar.lz
nixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.tar.xz
nixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.tar.zst
nixlib-b12564cc1b8319b317d98df03fec8ba4bbf71877.zip
nixos: update default cases from KDM/KDE4 to SDDM/KDE5
Diffstat (limited to 'nixos/modules/profiles')
-rw-r--r--nixos/modules/profiles/graphical.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix
index 8ee1628f876c..73dd2d4bc9f7 100644
--- a/nixos/modules/profiles/graphical.nix
+++ b/nixos/modules/profiles/graphical.nix
@@ -6,8 +6,8 @@
 {
   services.xserver = {
     enable = true;
-    displayManager.kdm.enable = true;
-    desktopManager.kde4.enable = true;
+    displayManager.sddm.enable = true;
+    desktopManager.kde5.enable = true;
     synaptics.enable = true; # for touchpad support on many laptops
   };