Update config-sample.json to comply with the requirements for version 2.8.6 (#2754)

I did not add the 'dev_path' key to each one of the partitions, as this may not be required in the 'default_layout' section, but it was required in my configuration when I chose 'manual_partitioning'.
This commit is contained in:
Vincent 2024-11-04 14:35:44 +01:00 committed by GitHub
parent aecf3ea553
commit 11987a06d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 25 additions and 16 deletions

View File

@ -1,5 +1,6 @@
{
"config_version": "2.5.2",
"__separator__": null,
"config_version": "2.8.6",
"additional-repositories": [],
"archinstall-language": "English",
"audio_config": {"audio": "pipewire"},
@ -82,19 +83,29 @@
"kernels": [
"linux"
],
"keyboard-layout": "us",
"mirror-region": {
"Australia": {
"http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch": true,
}
"locale_config": {
"kb_layout": "us",
"sys_enc": "UTF-8",
"sys_lang": "en_US"
},
"nic": {
"dhcp": true,
"dns": null,
"gateway": null,
"iface": null,
"ip": null,
"type": "nm"
"mirror_config": {
"mirror-regions": {
"Australia": [
"http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch"
]
}
},
"network_config": {
"type": "manual",
"nics": [
{
"iface": null,
"ip": null,
"dhcp": true,
"gateway": null,
"dns": null
}
]
},
"no_pkg_lookups": false,
"ntp": true,
@ -114,8 +125,6 @@
"script": "guided",
"silent": false,
"swap": true,
"sys-encoding": "utf-8",
"sys-language": "en_US",
"timezone": "UTC",
"version": "2.5.2"
"version": "2.8.6"
}