nixpkgs/modules/profiles/graphical.nix
Eelco Dolstra 5427b0f837 * Use kdm on the installation CD.
svn path=/nixos/trunk/; revision=25994
2011-02-16 15:33:54 +00:00

17 lines
336 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.kdm.enable = true;
desktopManager.default = "kde4";
desktopManager.kde4.enable = true;
};
}