index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2021-04-28 11:30:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 11:30:30 -0400 |
commit | f9f359ab73dabb74543909af5e98adb6c56a189d (patch) | |
tree | 8caf945204136aaf4c65ff3e1ff72a68c720f909 /profiles | |
parent | fd042053be741edaac8d967899d4b9cb1c4a913b (diff) |
-rw-r--r-- | profiles/applications/kde.py | 6 |
diff --git a/profiles/applications/kde.py b/profiles/applications/kde.py index a3332130..eacba708 100644 --- a/profiles/applications/kde.py +++ b/profiles/applications/kde.py @@ -1,8 +1,6 @@ import archinstall -packages = "" # Other packages for KDE are installed in the main profile now. +# Other packages for KDE are installed in the main profile now. if "nvidia" in _gfx_driver_packages: - packages = packages + " egl-wayland" - -installation.add_additional_packages(packages) + installation.add_additional_packages("egl-wayland") |