Split Nvidia so that there are two options for it

This makes selecting an Nvidia driver simpler and makes it apparent that we support both open-source and proprietary from the initial selection.
This commit is contained in:
Dylan M. Taylor 2021-06-08 10:11:41 -04:00 committed by Dylan Taylor
parent 3909333ae3
commit fe76c517e0
1 changed files with 6 additions and 4 deletions

View File

@ -48,10 +48,12 @@ AVAILABLE_GFX_DRIVERS = {
"intel-media-driver",
"vulkan-intel",
],
"Nvidia": {
"open-source": ["mesa", "xf86-video-nouveau", "libva-mesa-driver"],
"proprietary": ["nvidia"],
},
"Nvidia (open-source)": [
"mesa",
"xf86-video-nouveau",
"libva-mesa-driver"
],
"Nvidia (proprietary)": ["nvidia"],
"VMware / VirtualBox (open-source)": ["mesa", "xf86-video-vmware"],
}