0446f652a2
svn path=/nixos/trunk/; revision=30342
15 lines
323 B
Nix
15 lines
323 B
Nix
# 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 ];
|
|
}
|