From ea209b16f549faaafaffb91f42fb77fb8352bc6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Werner=20Ll=C3=A1cer?= Date: Wed, 2 Feb 2022 19:08:07 +0100 Subject: [PATCH] Solve issue #936 --- profiles/xorg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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__, ]