From 41495a1f8030c8438fcc23e4a82a5705dc6a70cc Mon Sep 17 00:00:00 2001 From: "Mariya T." <235426764+sigreturn@users.noreply.github.com> Date: Sun, 21 Dec 2025 16:56:27 -0500 Subject: [PATCH] fix: enable the cosmic-greeter service --- 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 cfe85de913..8ebe171ff6 100644 --- a/archinstall/lib/profile/profiles_handler.py +++ b/archinstall/lib/profile/profiles_handler.py @@ -204,6 +204,7 @@ def install_greeter(self, install_session: 'Installer', greeter: GreeterType) -> service = ['ly'] case GreeterType.CosmicSession: packages = ['cosmic-greeter'] + service = ['cosmic-greeter'] if packages: install_session.add_additional_packages(packages)