mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 01:34:11 +00:00
This is specific to xfree86 DDX, so should be under it's subdir. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
17 lines
600 B
Plaintext
17 lines
600 B
Plaintext
# This xorg.conf.d configuration snippet configures the X server to
|
|
# automatically load the nvidia X driver and nvidia GLX libraries
|
|
# when it detects a device driven by nvidia-drm.ko kernel module.
|
|
# Please note that this works on Linux kernels version 6.12 or higher
|
|
# with CONFIG_DRM enabled, and only if the nvidia-drm.ko kernel module
|
|
# is loaded before the X server is started.
|
|
|
|
Section "OutputClass"
|
|
Identifier "NVidia"
|
|
MatchDriver "nvidia-drm"
|
|
Driver "nvidia"
|
|
Module "glx"
|
|
Module "glxserver_nvidia"
|
|
Option "AllowEmptyInitialConfiguration"
|
|
ModulePath "@libdir@/nvidia/xorg"
|
|
EndSection
|