disko/example/btrfs-subvolumes.nix

43 lines
916 B
Nix
Raw Normal View History

2022-10-21 12:43:55 +00:00
{ disks ? [ "/dev/vdb" ], ... }: {
disk = {
2022-08-25 19:46:17 +00:00
vdb = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "table";
format = "gpt";
partitions = [
{
type = "partition";
name = "ESP";
start = "1MiB";
end = "128MiB";
fs-type = "fat32";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "root";
type = "partition";
start = "128MiB";
end = "100%";
content = {
type = "btrfs";
mountpoint = "/";
subvolumes = [
"/home"
"/test"
];
};
}
];
};
2022-08-25 19:46:17 +00:00
};
};
}