mirror of
https://github.com/nix-community/disko
synced 2024-11-10 14:24:27 +00:00
26 lines
447 B
Nix
26 lines
447 B
Nix
{
|
|
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"
|
|
];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|