mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-13 00:20:05 +01:00
27 lines
447 B
Nix
27 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"
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|