From 7da79cca30674cd7ecdd8a58a8b86c348968e7a6 Mon Sep 17 00:00:00 2001 From: h8d13 Date: Sun, 28 Dec 2025 11:13:50 +0100 Subject: [PATCH] This commit changes the order of the main menu. 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 9f7ec10398..edd66263d0 100644 --- a/archinstall/lib/global_menu.py +++ b/archinstall/lib/global_menu.py @@ -92,6 +92,14 @@ def _get_menu_options(self) -> list[MenuItem]: 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 @@ def _get_menu_options(self) -> list[MenuItem]: 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,