2009-06-11 11:51:27 +02:00
|
|
|
# This module defines a NixOS installation CD that contains X11 and
|
|
|
|
# KDE 4.
|
|
|
|
|
2011-01-21 14:38:30 +01:00
|
|
|
{ config, pkgs, ... }:
|
2009-06-11 11:51:27 +02:00
|
|
|
|
|
|
|
{
|
2010-09-25 11:32:57 +02:00
|
|
|
require = [
|
|
|
|
./installation-cd-base.nix
|
|
|
|
../../profiles/graphical.nix
|
|
|
|
];
|
2011-01-21 14:38:30 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
'';
|
2009-06-11 11:51:27 +02:00
|
|
|
}
|