Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorcodefiles <11915375+codefiles@users.noreply.github.com>2022-10-03 10:42:10 -0400
committerGitHub <noreply@github.com>2022-10-03 16:42:10 +0200
commit977976f88e761ced7d5bc9f39b32e2296ee91806 (patch)
treeee4b47ed02a3d4a1ff1fddd584a16d5bb9241f45 /README.md
parent40e4046633d857929b8fd1bfa121b38937add81c (diff)
Add hostname and locales as parameters to `minimal_installation()` (#1458)
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 72197ada..6bddfa24 100644
--- a/README.md
+++ b/README.md
@@ -122,8 +122,7 @@ with archinstall.luks2(root, 'luksloop', disk_password) as unlocked_root:
boot.mount('/mnt/boot')
with archinstall.Installer('/mnt') as installation:
- if installation.minimal_installation():
- installation.set_hostname('minimal-arch')
+ if installation.minimal_installation(hostname='minimal-arch'):
installation.add_bootloader()
installation.add_additional_packages(['nano', 'wget', 'git'])