From 30e518f324ee309d07a9f01131c4969a7208f4ae Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Sun, 13 Feb 2022 04:12:38 -0500 Subject: Use archlinux as the default hostname (#979) --- archinstall/lib/menu/selection_menu.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py index 84bb8e2f..c5d63c2f 100644 --- a/archinstall/lib/menu/selection_menu.py +++ b/archinstall/lib/menu/selection_menu.py @@ -458,7 +458,10 @@ class GlobalMenu(GeneralMenu): lambda: ask_for_bootloader(storage['arguments'].get('advanced', False)), default="systemd-bootctl" if has_uefi() else "grub-install") self._menu_options['hostname'] = \ - Selector(_('Specify hostname'), lambda: ask_hostname()) + Selector( + _('Specify hostname'), + lambda: ask_hostname(), + default='archlinux') self._menu_options['!root-password'] = \ Selector( _('Set root password'), -- cgit v1.2.3-54-g00ecf