disko/example/btrfs-subvolumes.nix

27 lines
447 B
Nix
Raw Normal View History

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