diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml
index 110712baf5f..ca93026d865 100644
--- a/nixos/doc/manual/configuration/x-windows.xml
+++ b/nixos/doc/manual/configuration/x-windows.xml
@@ -96,6 +96,47 @@
The options are named identically for all other display managers.
+
+ Intel Graphics drivers
+
+ There are two choices for Intel Graphics drivers in X.org:
+ modesetting (included in the xorg-server itself)
+ and intel (provided by the package xf86-video-intel).
+
+
+ The default and recommended is modesetting.
+ It is a generic driver which uses the kernel
+ mode setting
+ (KMS) mechanism. It supports Glamor (2D graphics acceleration via OpenGL)
+ and is actively maintained but may perform worse in some cases (like in old chipsets).
+
+
+ The second driver, intel, is specific to Intel GPUs,
+ but not recommended by most distributions: it lacks several modern features
+ (for example, it doesn't support Glamor) and the package hasn't been officially
+ updated since 2015.
+
+
+ The results vary depending on the hardware, so you may have to try both drivers.
+ Use the option to set one.
+ The recommended configuration for modern systems is:
+
+ = [ "modesetting" ];
+ = true;
+
+ If you experience screen tearing no matter what, this configuration was
+ reported to resolve the issue:
+
+ = [ "intel" ];
+ = ''
+ Option "DRI" "2"
+ Option "TearFree" "true"
+ '';
+
+ Note that this will likely downgrade the performance compared to
+ modesetting or intel with DRI 3 (default).
+
+ Proprietary NVIDIA drivers