nixpkgs/nixos/modules/profiles/graphical.nix

16 lines
391 B
Nix
Raw Normal View History

# This module defines a NixOS configuration with the Plasma 5 desktop.
# It's used by the graphical installation CD.
2011-02-16 12:29:05 +00:00
{ 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 ];
}