2020-04-24 23:36:52 +00:00
|
|
|
# This module defines a NixOS configuration with the Plasma 5 desktop.
|
|
|
|
# It's used by the graphical installation CD.
|
|
|
|
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
services.xserver = {
|
|
|
|
enable = true;
|
2024-04-21 15:54:59 +00:00
|
|
|
desktopManager.plasma5.enable = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
services = {
|
|
|
|
displayManager.sddm.enable = true;
|
|
|
|
libinput.enable = true; # for touchpad support on many laptops
|
|
|
|
};
|
2024-04-21 15:54:59 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
environment.systemPackages = [ pkgs.mesa-demos pkgs.firefox ];
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|