blend-inst/sample-config.json

35 lines
726 B
JSON
Raw Normal View History

2023-04-19 04:59:59 -05:00
{
"partition": {
"device": "/dev/randomdisk",
2023-05-11 04:29:18 -05:00
"mode": "Manual",
2023-04-19 04:59:59 -05:00
"efi": true,
"partitions": [
2023-05-11 04:29:18 -05:00
"System:/dev/randomdisk1:ext4",
"Boot:/dev/randomdisk2:fat32"
2023-04-19 04:59:59 -05:00
]
},
"bootloader": {
"type": "grub-efi",
"location": "/boot/efi"
},
"locale": {
"locale": [
"en_US.UTF-8 UTF-8"
],
"keymap": "us",
"timezone": "GMT"
},
"networking": {
"hostname": "blend",
"ipv6": false
},
"users": [
{
"name": "user",
2023-04-20 03:23:57 -05:00
"password": "SOME_PLAINTEXT_PASSWORD",
2023-04-19 04:59:59 -05:00
"shell": "bash"
}
],
"flatpak": true,
"kernel": "linux"
}