mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
16 lines
391 B
Nix
16 lines
391 B
Nix
# This module defines a NixOS configuration with the Plasma 5 desktop.
|
|
# It's used by the graphical installation CD.
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.sddm.enable = true;
|
|
desktopManager.plasma5.enable = true;
|
|
libinput.enable = true; # for touchpad support on many laptops
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.glxinfo ];
|
|
}
|