Skip to content

Commit 3607029

Browse files
authored
Reverted profiles and application installation order in order to not break DE's vs audioserver setups (#3694)
1 parent 1ba9d03 commit 3607029

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

archinstall/scripts/guided.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ def perform_installation(mountpoint: Path) -> None:
123123
if config.packages and config.packages[0] != '':
124124
installation.add_additional_packages(config.packages)
125125

126-
if profile_config := config.profile_config:
127-
profile_handler.install_profile_config(installation, profile_config)
128-
129126
if app_config := config.app_config:
130127
application_handler.install_applications(installation, app_config)
131128

129+
if profile_config := config.profile_config:
130+
profile_handler.install_profile_config(installation, profile_config)
131+
132132
if timezone := config.timezone:
133133
installation.set_timezone(timezone)
134134

0 commit comments

Comments
 (0)