confOS/archinstall/user_disk_layout.json
2022-06-03 15:12:17 +02:00

43 lines
No EOL
1.1 KiB
JSON

{
"/dev/nvme0n1": {
"partitions": [
{
"boot": true,
"encrypted": false,
"filesystem": {
"format": "fat32"
},
"mountpoint": "/boot",
"size": "512MiB",
"start": "1MiB",
"type": "primary",
"wipe": true
},
{
"encrypted": false,
"filesystem": {
"format": "ext4",
"mount_options": []
},
"mountpoint": "/",
"size": "20GiB",
"start": "513MiB",
"type": "primary",
"wipe": true
},
{
"encrypted": false,
"filesystem": {
"format": "ext4",
"mount_options": []
},
"mountpoint": "/home",
"size": "100%",
"start": "20GiB",
"type": "primary",
"wipe": true
}
],
"wipe": true
}
}