From f736b8c4ec9c2b16d98db914824eb283a6a8b032 Mon Sep 17 00:00:00 2001 From: HADEON <52324046+h8d13@users.noreply.github.com> Date: Tue, 17 Feb 2026 03:19:11 +0100 Subject: [PATCH] install gfx before DE/WM/Server (#4238) --- archinstall/lib/profile/profiles_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archinstall/lib/profile/profiles_handler.py b/archinstall/lib/profile/profiles_handler.py index 1ac208d4..5cf756bd 100644 --- a/archinstall/lib/profile/profiles_handler.py +++ b/archinstall/lib/profile/profiles_handler.py @@ -235,11 +235,11 @@ class ProfileHandler: if not profile: return - profile.install(install_session) - if profile_config.gfx_driver and (profile.is_xorg_type_profile() or profile.is_desktop_profile()): self.install_gfx_driver(install_session, profile_config.gfx_driver) + profile.install(install_session) + if profile_config.greeter: self.install_greeter(install_session, profile_config.greeter)