mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Fix networkmanager package name
This commit is contained in:
parent
cc5bc51fe7
commit
ddcb39b2cb
|
@ -100,7 +100,7 @@ def run_pacstrap(root_mountpoint: Path):
|
||||||
|
|
||||||
extra_pkgs = inquirer.shortcuts.checkbox(
|
extra_pkgs = inquirer.shortcuts.checkbox(
|
||||||
"You can choose to install additional packages with pacstrap here (select with space)",
|
"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)}")
|
run_root_cmd(f"pacstrap {root_mountpoint} base linux linux-firmware {' '.join(extra_pkgs)}")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue