2017-03-03 16:27:41 +03:00
|
|
|
# This module defines a NixOS configuration with the Plasma 5 desktop.
|
|
|
|
# It's used by the graphical installation CD.
|
2011-11-08 20:17:37 +04:00
|
|
|
|
2018-07-20 23:56:59 +03:00
|
|
|
{ pkgs, ... }:
|
2010-09-25 13:32:57 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
services.xserver = {
|
|
|
|
enable = true;
|
2017-02-10 05:25:03 +03:00
|
|
|
displayManager.sddm.enable = true;
|
2018-09-24 22:39:57 +03:00
|
|
|
desktopManager.plasma5 = {
|
|
|
|
enable = true;
|
|
|
|
enableQt4Support = false;
|
|
|
|
};
|
2017-08-31 03:25:11 +03:00
|
|
|
libinput.enable = true; # for touchpad support on many laptops
|
2010-09-25 13:32:57 +04:00
|
|
|
};
|
2011-11-08 23:18:34 +04:00
|
|
|
|
2018-09-23 07:33:16 +03:00
|
|
|
environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];
|
2010-09-25 13:32:57 +04:00
|
|
|
}
|