Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed pyparted from pyproject.toml as readthedocs read that one too…
Browse files Browse the repository at this point in the history
… afterall.
Torxed committed Nov 22, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents e0690ae + 8b774a9 commit 24e09bd
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion archinstall/lib/hardware.py
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@ class GfxPackage(Enum):
LibvaMesaDriver = 'libva-mesa-driver'
Mesa = "mesa"
Nvidia = 'nvidia'
NvidiaDKMS = 'nvidia-dkms'
NvidiaOpen = 'nvidia-open'
VulkanIntel = 'vulkan-intel'
VulkanRadeon = 'vulkan-radeon'
@@ -108,7 +109,10 @@ def packages(self) -> List[GfxPackage]:
GfxPackage.LibvaMesaDriver
]
case GfxDriver.NvidiaProprietary:
return [GfxPackage.Nvidia]
return [
GfxPackage.Nvidia,
GfxPackage.NvidiaDKMS
]
case GfxDriver.VMOpenSource:
return [
GfxPackage.Mesa,
2 changes: 2 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sphinx_rtd_theme
simple-term-menu

0 comments on commit 24e09bd

Please sign in to comment.