Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/kde.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-14 18:35:40 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-14 18:35:40 +0200
commit6e898217eec4d287cb8d8ee4f70720fed6f6b4c7 (patch)
tree510ddc1ad4d138dd86eff976a38ed1cd7e8a8583 /profiles/kde.py
parent12dc55650d78dc41bbc0ab7013baa7b3ce61ec7c (diff)
parentd0676dfa3daf4f25fad01943fd22b8e3df42e7fb (diff)
Merge branch 'master' of github.com:archlinux/archinstall into torxed-fix-350
Diffstat (limited to 'profiles/kde.py')
-rw-r--r--profiles/kde.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/profiles/kde.py b/profiles/kde.py
index c8efdcde..aac5ade4 100644
--- a/profiles/kde.py
+++ b/profiles/kde.py
@@ -37,10 +37,10 @@ def _post_install(*args, **kwargs):
# or through conventional import kde
if __name__ == 'kde':
# Install dependency profiles
- installation.install_profile('xorg')
+ archinstall.storage['installation_session'].install_profile('xorg')
# Install the KDE packages
- installation.add_additional_packages(__packages__)
+ archinstall.storage['installation_session'].add_additional_packages(__packages__)
# Enable autostart of KDE for all users
- installation.enable_service('sddm')
+ archinstall.storage['installation_session'].enable_service('sddm')