Mount partitions in minimal script before starting installation (#3585)

This commit is contained in:
Daniel Girtler 2025-06-12 07:14:54 +10:00 committed by GitHub
parent 063b9643b4
commit 12c8a5c62e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ def perform_installation(mountpoint: Path) -> None:
) as installation:
# Strap in the base system, add a boot loader and configure
# some other minor details as specified by this profile and user.
installation.mount_ordered_layout()
installation.minimal_installation()
installation.set_hostname('minimal-arch')
installation.add_bootloader(Bootloader.Systemd)