index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-29 08:18:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 10:18:43 +0200 |
commit | 2d02e806f2ae5341752a0ceb532e5c239a164ee7 (patch) | |
tree | 57f7e5c956fc63f008bafedec91a6ceafde66b8b /profiles/xorg.py | |
parent | 9fd87a4b531ceaa037014d7ff710823698f49300 (diff) |
-rw-r--r-- | profiles/xorg.py | 4 |
diff --git a/profiles/xorg.py b/profiles/xorg.py index cd89668d..7546a01b 100644 --- a/profiles/xorg.py +++ b/profiles/xorg.py @@ -1,10 +1,12 @@ # A system with "xorg" installed import os -from archinstall import generic_select, sys_command, RequirementError import archinstall + is_top_level_profile = True +__packages__ = ['dkms', 'xorg-server', 'xorg-xinit', 'nvidia-dkms', 'xorg-server', *archinstall.lib.hardware.__packages__] + def _prep_function(*args, **kwargs): """ Magic function called by the importing installer |