* 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
This commit is contained in:
parent
66ead80026
commit
8361444f9b
|
@ -8,4 +8,13 @@
|
||||||
./installation-cd-base.nix
|
./installation-cd-base.nix
|
||||||
../../profiles/graphical.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
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue