03760c0c03
an X server and KDE 4. Thanks to squashfs it's only 466 MiB large. `installation-cd-small.nix' builds the original, text-only installation CD. svn path=/nixos/branches/modular-nixos/; revision=15934
16 lines
314 B
Nix
16 lines
314 B
Nix
# This module defines a NixOS installation CD that contains X11 and
|
|
# KDE 4.
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
{
|
|
require = [./installation-cd-base.nix];
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
autorun = false;
|
|
defaultDepth = 16;
|
|
desktopManager.default = "kde4";
|
|
desktopManager.kde4.enable = true;
|
|
};
|
|
}
|