nixos: fix renaming warning in graphical profile

This commit is contained in:
Thomas Tuegel 2017-03-03 07:27:41 -06:00
parent 60817e4715
commit 8e6bdcc731
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

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