Skip to content

Commit

Permalink
nixos/xserver: drop intel from videoDrivers
Browse files Browse the repository at this point in the history
  • Loading branch information
7c6f434c committed Feb 11, 2019
1 parent b5f3b7d commit cdc396d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions nixos/doc/manual/release-notes/rl-1903.xml
Expand Up @@ -515,6 +515,15 @@
provisioning.
</para>
</listitem>
<listitem>
<para>
The <literal>intel</literal> driver has been removed from the default list of
<link linkend="opt-services.xserver.videoDrivers">X.org video drivers</link>.
The <literal>modesetting</literal> driver should take over automatically,
it is better maintained upstream and has less problems with advanced features.
Some performance regressions on some GPU models might happen.
</para>
</listitem>
</itemizedlist>
</section>
</section>
2 changes: 1 addition & 1 deletion nixos/modules/services/x11/xserver.nix
Expand Up @@ -240,7 +240,7 @@ in
videoDrivers = mkOption {
type = types.listOf types.str;
# !!! We'd like "nv" here, but it segfaults the X server.
default = [ "ati" "cirrus" "intel" "vesa" "vmware" "modesetting" ];
default = [ "ati" "cirrus" "vesa" "vmware" "modesetting" ];
example = [
"ati_unfree" "amdgpu" "amdgpu-pro"
"nv" "nvidia" "nvidiaLegacy340" "nvidiaLegacy304"
Expand Down

0 comments on commit cdc396d

Please sign in to comment.