index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Werner Llácer <wllacer@gmail.com> | 2022-02-05 13:52:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-05 13:52:14 +0100 |
commit | ec73bdab4cf124aba16e10293e5e75a3bc89afb8 (patch) | |
tree | 1863b408806c853d92c2553e46f3f303bbc01338 /profiles | |
parent | 0ec9549dc49a05c5059e34926d366dadfb3aa5b8 (diff) |
-rw-r--r-- | profiles/xorg.py | 4 |
diff --git a/profiles/xorg.py b/profiles/xorg.py index aa8b5248..e13b15d7 100644 --- a/profiles/xorg.py +++ b/profiles/xorg.py @@ -2,7 +2,7 @@ import archinstall import logging - +from archinstall.lib.hardware import __packages__ as __hwd__packages__ is_top_level_profile = True __description__ = 'Installs a minimal system as well as xorg and graphics drivers.' @@ -12,7 +12,7 @@ __packages__ = [ 'xorg-server', 'xorg-xinit', 'nvidia-dkms', - *archinstall.lib.hardware.__packages__, + *__hwd__packages__, ] |