nixpkgs/modules/profiles/graphical.nix
Eelco Dolstra 8f5f70b292 * We don't really need a display manager on the installation CD. Just
log in as root automatically.

svn path=/nixos/trunk/; revision=26014
2011-02-17 14:38:02 +00:00

17 lines
337 B
Nix

# This module defines a NixOS configuration that contains X11 and
# KDE 4.
{ config, pkgs, ... }:
{
require = [ ./base.nix ];
services.xserver = {
enable = true;
autorun = true;
defaultDepth = 24;
displayManager.auto.enable = true;
desktopManager.default = "kde4";
desktopManager.kde4.enable = true;
};
}