disko/example/btrfs-subvolumes.nix

30 lines
527 B
Nix
Raw Normal View History

2022-08-25 21:46:17 +02:00
{
disk = {
2022-08-25 21:46:17 +02:00
vdb = {
type = "disk";
device = "/dev/vdb";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "root";
type = "partition";
start = "0%";
end = "100%";
content = {
type = "btrfs";
mountpoint = "/";
subvolumes = [
"/home"
"/test"
];
};
}
];
};
2022-08-25 21:46:17 +02:00
};
};
}