mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Enable the xf86-video-modesetting driver
This commit is contained in:
parent
ca123bc274
commit
784503864b
@ -169,7 +169,7 @@ in
|
|||||||
videoDrivers = mkOption {
|
videoDrivers = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
# !!! We'd like "nv" here, but it segfaults the X server.
|
# !!! We'd like "nv" here, but it segfaults the X server.
|
||||||
default = [ "ati" "cirrus" "intel" "vesa" "vmware" ];
|
default = [ "ati" "cirrus" "intel" "vesa" "vmware" "modesetting" ];
|
||||||
example = [ "vesa" ];
|
example = [ "vesa" ];
|
||||||
description = ''
|
description = ''
|
||||||
The names of the video drivers the configuration
|
The names of the video drivers the configuration
|
||||||
|
@ -422,6 +422,7 @@ let
|
|||||||
xf86videonv = linux;
|
xf86videonv = linux;
|
||||||
xf86videovesa = linux;
|
xf86videovesa = linux;
|
||||||
xf86videovmware = linux;
|
xf86videovmware = linux;
|
||||||
|
xf86videomodesetting = linux;
|
||||||
xfs = linux;
|
xfs = linux;
|
||||||
xinput = linux;
|
xinput = linux;
|
||||||
xkbcomp = linux;
|
xkbcomp = linux;
|
||||||
|
Loading…
Reference in New Issue
Block a user