97a4e1fcb3
* Make sure that reconfiguration in the live CD works properly by including the proper configuration module in /etc/nixos/configuration.nix. Ugly. svn path=/nixos/branches/modular-nixos/; revision=16016
19 lines
408 B
Nix
19 lines
408 B
Nix
# This module defines a NixOS installation CD that contains X11 and
|
|
# KDE 4.
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
{
|
|
require = [./installation-cd-base.nix];
|
|
|
|
installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-graphical.nix";
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
autorun = false;
|
|
defaultDepth = 16;
|
|
desktopManager.default = "kde4";
|
|
desktopManager.kde4.enable = true;
|
|
};
|
|
}
|