summary refs log tree commit diff
path: root/nixos/modules/profiles/graphical.nix
blob: 75ac5e41f83ef14a8048eeaa6e8928079536c990 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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.kdm.enable = true;
    desktopManager.kde4.enable = true;
  };

  environment.systemPackages = [ pkgs.glxinfo ];
}