summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-03-03 07:27:41 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-03-03 07:27:41 -0600
commit8e6bdcc7317179fbc906d725e2b1c0f6b1c72199 (patch)
treec3bf37739a36e5e8504fd279bab91e9e48ff1e82
parent60817e4715a2fd42390a44b189b1c1cd1b888529 (diff)
downloadnixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.tar
nixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.tar.gz
nixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.tar.bz2
nixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.tar.lz
nixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.tar.xz
nixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.tar.zst
nixpkgs-8e6bdcc7317179fbc906d725e2b1c0f6b1c72199.zip
nixos: fix renaming warning in graphical profile
-rw-r--r--nixos/modules/profiles/graphical.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix
index 73dd2d4bc9f..e2337537518 100644
--- a/nixos/modules/profiles/graphical.nix
+++ b/nixos/modules/profiles/graphical.nix
@@ -1,5 +1,5 @@
-# This module defines a NixOS configuration that contains X11 and
-# KDE 4.  It's used by the graphical installation CD.
+# This module defines a NixOS configuration with the Plasma 5 desktop.
+# It's used by the graphical installation CD.
 
 { config, pkgs, ... }:
 
@@ -7,7 +7,7 @@
   services.xserver = {
     enable = true;
     displayManager.sddm.enable = true;
-    desktopManager.kde5.enable = true;
+    desktopManager.plasma5.enable = true;
     synaptics.enable = true; # for touchpad support on many laptops
   };