disko/example/bcachefs.nix

34 lines
750 B
Nix
Raw Normal View History

2022-12-29 18:46:31 +01:00
{ disks ? [ "/dev/vdb" ], ... }: {
disko.devices = {
disk = {
vdb = {
device = builtins.elemAt disks 0;
type = "disk";
content = {
2023-06-16 21:24:22 +02:00
type = "gpt";
partitions = {
ESP = {
end = "100MiB";
2023-06-16 21:24:22 +02:00
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
2023-06-16 21:24:22 +02:00
};
root = {
name = "root";
2023-06-16 21:24:22 +02:00
end = "-0";
content = {
type = "filesystem";
format = "bcachefs";
mountpoint = "/";
};
2023-06-16 21:24:22 +02:00
};
};
};
2022-12-29 18:46:31 +01:00
};
};
};
}