nixpkgs/modules/profiles/graphical.nix
Nicolas Pierron 921231b555 Add nixos-gui among the installer tools.
Add it as a default for the graphical profile.

svn path=/nixos/trunk/; revision=26960
2011-04-25 01:03:57 +00:00

19 lines
379 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;
};
installer.enableGraphicalTools = true;
}