nixpkgs/modules/installer/cd-dvd/installation-cd-graphical.nix
Eelco Dolstra 5409e76353 * Disable wicd in the installation CD for now, because it causes
dhcpcd to segfault randomly or give corrupt output.  See e.g.

    http://hydra.nixos.org/build/2380666/nixlog/1/raw

  The problem seems to be that wicd sends a "-k" command to dhcpcd to
  release the interface, which doesn't work well with a dhcpcd that
  handles all interfaces in one process.

svn path=/nixos/trunk/; revision=33720
2012-04-10 13:09:56 +00:00

34 lines
747 B
Nix

# This module defines a NixOS installation CD that contains X11 and
# KDE 4.
{ config, pkgs, ... }:
with pkgs.lib;
{
require = [
./installation-cd-base.nix
../../profiles/graphical.nix
];
# Provide wicd for easy wireless configuration.
#networking.wicd.enable = true;
# KDE complains if power management is disabled (to be precise, if
# there is no power management backend such as upower).
powerManagement.enable = true;
# Don't start the X server by default.
services.xserver.autorun = mkForce false;
# Auto-login as root.
services.xserver.displayManager.kdm.extraConfig =
''
[X-*-Core]
AllowRootLogin=true
AutoLoginEnable=true
AutoLoginUser=root
AutoLoginPass=""
'';
}