Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/interactions/__init__.py
blob: 4b696a78ffc45ac074338db1d3df185601e274db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from .manage_users_conf import UserList, ask_for_additional_users
from .network_menu import ManualNetworkConfig, ask_to_configure_network
from .utils import get_password

from .disk_conf import (
	select_devices, select_disk_config, get_default_partition_layout,
	select_main_filesystem_format, suggest_single_disk_layout,
	suggest_multi_disk_layout
)

from .general_conf import (
	ask_ntp, ask_hostname, ask_for_a_timezone, ask_for_audio_selection,
	select_archinstall_language, ask_additional_packages_to_install,
	add_number_of_parallel_downloads, select_additional_repositories
)

from .system_conf import (
	select_kernel, ask_for_bootloader, ask_for_uki, select_driver, ask_for_swap
)