1fd2e71c8d
xulrunner is a big package (> 105 MiB); 2) it breaks the CD build (http://hydra.nixos.org/build/1057258); 3) currently it doesn't do much yet. Note that if we do add it, we might as well add Firefox to the CD (since it's only a few MiB more on top of xulrunner). svn path=/nixos/trunk/; revision=26993
17 lines
337 B
Nix
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;
|
|
};
|
|
}
|