summary refs log tree commit diff
path: root/nixos/modules/profiles/graphical.nix
blob: 73dd2d4bc9f7232410459a864ab464e8772b8870 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This module defines a NixOS configuration that contains X11 and
# KDE 4.  It's used by the graphical installation CD.

{ 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 ];
}