From ac984b7622462c0e9b791541fc603ddad21a7852 Mon Sep 17 00:00:00 2001 From: HADEON <52324046+h8d13@users.noreply.github.com> Date: Sun, 28 Dec 2025 12:20:17 +0100 Subject: [PATCH] This commit changes the order of the main menu. (#4043) Since in the next NVIDIA update, the kernel choice will have an impact on profiles. The order this way makes it more logical: Bootloader => Kernel => Hw drivers --- archinstall/lib/global_menu.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/archinstall/lib/global_menu.py b/archinstall/lib/global_menu.py index 9f7ec103..edd66263 100644 --- a/archinstall/lib/global_menu.py +++ b/archinstall/lib/global_menu.py @@ -92,6 +92,14 @@ class GlobalMenu(AbstractMenu[None]): preview_action=self._prev_bootloader_config, key='bootloader_config', ), + MenuItem( + text=tr('Kernels'), + value=['linux'], + action=select_kernel, + preview_action=self._prev_kernel, + mandatory=True, + key='kernels', + ), MenuItem( text=tr('Hostname'), value='archlinux', @@ -118,14 +126,6 @@ class GlobalMenu(AbstractMenu[None]): preview_action=self._prev_applications, key='app_config', ), - MenuItem( - text=tr('Kernels'), - value=['linux'], - action=select_kernel, - preview_action=self._prev_kernel, - mandatory=True, - key='kernels', - ), MenuItem( text=tr('Network configuration'), action=ask_to_configure_network,