nixpkgs/modules/installer/cd-dvd/installation-cd-graphical.nix
Eelco Dolstra 8361444f9b * Disable compositing for now in the graphical installation CD. It
seems to cause problems with KDE 4.5 on some graphics drivers (such
  as Cirrus and VGA in QEMU).  (NixOS/121)

svn path=/nixos/trunk/; revision=25659
2011-01-21 13:38:30 +00:00

21 lines
451 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
];
# 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
'';
}