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