From ba5f9245409fb660785eaead9e7a0b42305207aa Mon Sep 17 00:00:00 2001 From: Mariya <235426764+sigreturn@users.noreply.github.com> Date: Sun, 21 Dec 2025 17:07:47 -0500 Subject: [PATCH] fix: enable the cosmic-greeter service (#4023) --- archinstall/lib/profile/profiles_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/archinstall/lib/profile/profiles_handler.py b/archinstall/lib/profile/profiles_handler.py index b2a6791e..96ce476a 100644 --- a/archinstall/lib/profile/profiles_handler.py +++ b/archinstall/lib/profile/profiles_handler.py @@ -206,6 +206,7 @@ class ProfileHandler: service_disable = ['getty@tty1'] case GreeterType.CosmicSession: packages = ['cosmic-greeter'] + service = ['cosmic-greeter'] if packages: install_session.add_additional_packages(packages)