Updated examples, fix #772
This commit is contained in:
parent
e285d84651
commit
87e75a7d09
|
|
@ -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"
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"!root-password": "<root password>",
|
||||
"!users": {
|
||||
"username": {"!password": "<user password>"}
|
||||
},
|
||||
"!superusers": {
|
||||
"admin": {"!password": "<admin password>"}
|
||||
}
|
||||
}
|
||||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue