example.btrfs_subvolumes: use new gpt type

This commit is contained in:
lassulus 2023-07-01 19:22:31 +02:00 committed by mergify[bot]
parent ab9b880db2
commit 49888aeb90

View file

@ -5,25 +5,21 @@
type = "disk"; type = "disk";
device = builtins.elemAt disks 0; device = builtins.elemAt disks 0;
content = { content = {
type = "table"; type = "gpt";
format = "gpt"; partitions = {
partitions = [ ESP = {
{ priority = 1;
name = "ESP"; name = "ESP";
start = "1MiB"; start = "1M";
end = "128MiB"; end = "128MiB";
fs-type = "fat32";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "vfat"; format = "vfat";
mountpoint = "/boot"; mountpoint = "/boot";
}; };
} };
{ root = {
name = "root"; size = "100%";
start = "128MiB";
end = "100%";
content = { content = {
type = "btrfs"; type = "btrfs";
extraArgs = [ "-f" ]; # Override existing partition extraArgs = [ "-f" ]; # Override existing partition
@ -42,8 +38,8 @@
"/test" = { }; "/test" = { };
}; };
}; };
} };
]; };
}; };
}; };
}; };