nixpkgs/modules/installer/cd-dvd/installation-cd-graphical.nix
Eelco Dolstra 34dea57f8a * Add wicd to the NixOS CD.
svn path=/nixos/trunk/; revision=26083
2011-02-23 19:11:32 +00:00

24 lines
535 B
Nix

# This module defines a NixOS installation CD that contains X11 and
# KDE 4.
{ config, pkgs, ... }:
{
require = [
./installation-cd-base.nix
../../profiles/graphical.nix
];
# Provide wicd for easy wireless configuration.
networking.wicd.enable = true;
# Disable compositing for now. It seems to cause problems with KDE
# 4.5 on some graphics drivers (such as Cirrus and VGA in QEMU).
services.xserver.config =
''
Section "Extensions"
Option "Composite" "Disable"
EndSection
'';
}