2023-08-11 06:11:01 +00:00
|
|
|
{
|
2023-03-03 07:09:13 +00:00
|
|
|
disko.devices = {
|
|
|
|
disk = {
|
2024-07-19 19:17:48 +00:00
|
|
|
main = {
|
2023-07-13 20:19:55 +00:00
|
|
|
device = "/dev/disk/by-id/some-disk-id";
|
2023-03-03 07:09:13 +00:00
|
|
|
type = "disk";
|
|
|
|
content = {
|
2023-06-07 12:31:21 +00:00
|
|
|
type = "gpt";
|
2023-06-07 11:54:53 +00:00
|
|
|
partitions = {
|
|
|
|
ESP = {
|
|
|
|
type = "EF00";
|
2023-09-27 06:13:25 +00:00
|
|
|
size = "500M";
|
2023-03-03 07:09:13 +00:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
2023-06-07 11:54:53 +00:00
|
|
|
};
|
|
|
|
root = {
|
2023-06-17 07:07:14 +00:00
|
|
|
size = "100%";
|
2023-03-03 07:09:13 +00:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "ext4";
|
|
|
|
mountpoint = "/";
|
|
|
|
};
|
2023-06-07 11:54:53 +00:00
|
|
|
};
|
|
|
|
};
|
2023-03-03 07:09:13 +00:00
|
|
|
};
|
2022-10-23 10:29:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|