confOS/archinstall/user_disk_layout.json

31 lines
760 B
JSON
Raw Normal View History

2022-06-03 15:12:17 +02:00
{
"/dev/nvme0n1": {
"partitions": [
{
"boot": true,
"encrypted": false,
"filesystem": {
"format": "fat32"
},
"mountpoint": "/boot",
"size": "512MiB",
"start": "1MiB",
"type": "primary",
"wipe": true
},
{
2022-06-06 15:15:48 +02:00
"encrypted": false,
2022-06-03 15:12:17 +02:00
"filesystem": {
2022-06-06 14:53:02 +02:00
"format": "ext4"
2022-06-03 15:12:17 +02:00
},
"mountpoint": "/",
"size": "100%",
2022-06-06 14:53:02 +02:00
"start": "513MiB",
2022-06-03 15:12:17 +02:00
"type": "primary",
"wipe": true
}
],
"wipe": true
}
2022-06-06 14:53:02 +02:00
}