Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorWerner Llácer <wllacer@gmail.com>2022-02-05 13:52:14 +0100
committerGitHub <noreply@github.com>2022-02-05 13:52:14 +0100
commitec73bdab4cf124aba16e10293e5e75a3bc89afb8 (patch)
tree1863b408806c853d92c2553e46f3f303bbc01338 /profiles
parent0ec9549dc49a05c5059e34926d366dadfb3aa5b8 (diff)
Routine to properly print and save config data (#888)
* Created a standard function to show/save the config parameters * flake8 complains * Correct definition of btrfs standard layout * Solve issue #936 * Moved output_configs to lib/configuration.py
Diffstat (limited to 'profiles')
-rw-r--r--profiles/xorg.py4
1 files 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__,
]