Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-rw-r--r--profiles/applications/kde.py2
-rw-r--r--profiles/kde.py5
2 files changed, 5 insertions, 2 deletions
diff --git a/profiles/applications/kde.py b/profiles/applications/kde.py
index 150fc0e3..a3332130 100644
--- a/profiles/applications/kde.py
+++ b/profiles/applications/kde.py
@@ -1,6 +1,6 @@
import archinstall
-packages = "plasma-meta konsole kate dolphin sddm plasma-wayland-session"
+packages = "" # Other packages for KDE are installed in the main profile now.
if "nvidia" in _gfx_driver_packages:
packages = packages + " egl-wayland"
diff --git a/profiles/kde.py b/profiles/kde.py
index 28460cbc..1c98237b 100644
--- a/profiles/kde.py
+++ b/profiles/kde.py
@@ -39,7 +39,10 @@ if __name__ == 'kde':
# Install dependency profiles
installation.install_profile('xorg')
- # Install the application kde from the template under /applications/
+ # Install the KDE packages
+ installation.add_additional_packages(__packages__)
+
+ # Run KDE application configuration
kde = archinstall.Application(installation, 'kde')
kde.install()