1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/nixos/modules/profiles/graphical.nix

16 lines
392 B
Nix
Raw Normal View History

# This module defines a NixOS configuration that contains X11 and
# KDE 4. It's used by the graphical installation CD.
2011-02-16 07:29:05 -05:00
{ config, pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager.sddm.enable = true;
desktopManager.kde5.enable = true;
synaptics.enable = true; # for touchpad support on many laptops
};
environment.systemPackages = [ pkgs.glxinfo ];
}