nixpkgs/modules/installer/cd-dvd/installation-cd-graphical.nix
Eelco Dolstra 06843a45ef * Fix auto-login.
svn path=/nixos/trunk/; revision=30341
2011-11-08 19:02:51 +00:00

34 lines
746 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=""
'';
}