2023-11-13 21:44:43 +00:00
|
|
|
{
|
|
|
|
disko.devices = {
|
|
|
|
disk = {
|
|
|
|
vdb = {
|
|
|
|
device = "/dev/nvme0n1";
|
|
|
|
type = "disk";
|
|
|
|
content = {
|
|
|
|
type = "gpt";
|
|
|
|
partitions = {
|
|
|
|
ESP = {
|
|
|
|
type = "EF00";
|
|
|
|
size = "500M";
|
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
root = {
|
2023-11-19 16:48:57 +00:00
|
|
|
end = "-4G";
|
2023-11-13 21:44:43 +00:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
2023-11-19 16:48:57 +00:00
|
|
|
format = "btrfs";
|
2023-11-13 21:44:43 +00:00
|
|
|
mountpoint = "/";
|
|
|
|
};
|
|
|
|
};
|
2023-11-19 16:48:57 +00:00
|
|
|
swap = { size = "100%"; };
|
2023-11-13 21:44:43 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|