Reverted profiles and application installation order in order to not break DE's vs audioserver setups (#3694)

This commit is contained in:
Anton Hvornum 2025-07-30 08:16:36 +02:00 committed by GitHub
parent 1ba9d0371a
commit 3607029d59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -123,12 +123,12 @@ def perform_installation(mountpoint: Path) -> None:
if config.packages and config.packages[0] != '':
installation.add_additional_packages(config.packages)
if profile_config := config.profile_config:
profile_handler.install_profile_config(installation, profile_config)
if app_config := config.app_config:
application_handler.install_applications(installation, app_config)
if profile_config := config.profile_config:
profile_handler.install_profile_config(installation, profile_config)
if timezone := config.timezone:
installation.set_timezone(timezone)