Updated examples, fix #772

This commit is contained in:
Anton Hvornum 2021-11-26 14:24:47 +00:00
parent e285d84651
commit 87e75a7d09
3 changed files with 60 additions and 19 deletions

View File

@ -1,35 +1,29 @@
{
"!root-password": "<root_password>",
"audio": null,
"bootloader": "systemd-bootctl",
"filesystem": "btrfs",
"harddrive": {
"path": "/dev/sda"
},
"hostname": "box",
"harddrives": [
"/dev/loop0"
],
"hostname": "",
"kernels": [
"linux"
],
"keyboard-language": "us",
"keyboard-layout": "us",
"mirror-region": {
"Worldwide": {
"https://mirror.rackspace.com/archlinux/$repo/os/$arch": true
}
},
"nic": {
"NetworkManager": true
"NetworkManager": true,
"nic": "Use NetworkManager (necessary to configure internet graphically in GNOME and KDE)"
},
"ntp": true,
"packages": [],
"profile": null,
"superusers": {
"<username>": {
"!password": "<password>"
}
},
"timezone": "UTC",
"users": {
"<username>": {
"!password": "<password>"
}
}
"script": "guided",
"swap": true,
"sys-encoding": "utf-8",
"sys-language": "en_US",
"timezone": "UTC"
}

View File

@ -0,0 +1,9 @@
{
"!root-password": "<root password>",
"!users": {
"username": {"!password": "<user password>"}
},
"!superusers": {
"admin": {"!password": "<admin password>"}
}
}

View File

@ -0,0 +1,38 @@
{
"/dev/loop0": {
"partitions": [
{
"boot": true,
"encrypted": false,
"filesystem": {
"format": "fat32"
},
"format": true,
"mountpoint": "/boot",
"size": "513MB",
"start": "5MB",
"type": "primary"
},
{
"btrfs": {
"subvolumes": {
"@.snapshots": "/.snapshots",
"@home": "/home",
"@log": "/var/log",
"@pkgs": "/var/cache/pacman/pkg"
}
},
"encrypted": true,
"filesystem": {
"format": "btrfs"
},
"format": true,
"mountpoint": "/",
"size": "100%",
"start": "518MB",
"type": "primary"
}
],
"wipe": true
}
}