Fix networkmanager package name

This commit is contained in:
ItsDrike 2021-05-11 17:57:23 +02:00
parent cc5bc51fe7
commit ddcb39b2cb
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -100,7 +100,7 @@ def run_pacstrap(root_mountpoint: Path):
extra_pkgs = inquirer.shortcuts.checkbox(
"You can choose to install additional packages with pacstrap here (select with space)",
choices=["NetworkManager", "base-devel", "vim", "nano"]
choices=["networkmanager", "base-devel", "vim", "nano"]
)
run_root_cmd(f"pacstrap {root_mountpoint} base linux linux-firmware {' '.join(extra_pkgs)}")