Use archlinux as the default hostname (#979)

This commit is contained in:
Dylan M. Taylor 2022-02-13 04:12:38 -05:00 committed by GitHub
parent fb72cc4204
commit 30e518f324
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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'),