Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archinstall/lib/menu/selection_menu.py5
1 files changed, 4 insertions, 1 deletions
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'),