nixpkgs/modules/profiles/graphical.nix
Eelco Dolstra 295dafed8a * Refactoring: graphical.nix no longer includes base.nix so that it
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
2011-11-08 16:17:37 +00:00

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