summary refs log tree commit diff
path: root/nixos/doc/manual/configuration
diff options
context:
space:
mode:
authorNathaniel Baxter <nathaniel.baxter@gmail.com>2014-09-07 12:42:32 +1000
committerNathaniel Baxter <nathaniel.baxter@gmail.com>2014-09-07 12:42:32 +1000
commitfb9a6221b63ee92c27c917368e980649c5167203 (patch)
tree96c0fda770e3ddc01b6f0b2eb8f66dbd7ffa3d5e /nixos/doc/manual/configuration
parent45f4b8b3adabfe8f19ef358e0d7d84df2c3c4723 (diff)
downloadnixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.tar
nixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.tar.gz
nixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.tar.bz2
nixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.tar.lz
nixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.tar.xz
nixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.tar.zst
nixpkgs-fb9a6221b63ee92c27c917368e980649c5167203.zip
ati_unfree: Update nixos-manual for AMD driver support
Diffstat (limited to 'nixos/doc/manual/configuration')
-rw-r--r--nixos/doc/manual/configuration/x-windows.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml
index bc58bb1f066..cfcc8baa898 100644
--- a/nixos/doc/manual/configuration/x-windows.xml
+++ b/nixos/doc/manual/configuration/x-windows.xml
@@ -73,6 +73,25 @@ services.xserver.driSupport32Bit = true;
 
 </simplesect>
 
+<simplesect><title>AMD Graphics Cards</title>
+
+<para>AMD provides a proprietary driver for its graphics cards that
+has better 3D performance than the X.org drivers.  It is not enabled
+by default because it’s not free software.  You can enable it as follows:
+<programlisting>
+services.xserver.videoDrivers = [ "ati_unfree" ];
+</programlisting>
+You will need to reboot after enabling this driver to prevent a clash
+with other kernel modules.</para>
+
+<para>On 64-bit systems, if you want full acceleration for 32-bit
+programs such as Wine, you should also set the following:
+<programlisting>
+hardware.opengl.driSupport32Bit = true;
+</programlisting>
+</para>
+
+</simplesect>
 
 <simplesect><title>Touchpads</title>