295dafed8a
just does what it says (enable a "graphical" configuration). * Enable KDM in the graphical CD. The "auto" display manager doesn't properly handle shutdowns etc. svn path=/nixos/trunk/; revision=30331
13 lines
273 B
Nix
13 lines
273 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;
|
|
};
|
|
}
|