From fe76c517e0c8e34e5100fcd451fe4f6d91570312 Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Tue, 8 Jun 2021 10:11:41 -0400 Subject: 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. --- archinstall/lib/hardware.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'archinstall/lib') diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py index 45e042db..a63155f5 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -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"], } -- cgit v1.2.3-54-g00ecf