13 lines
231 B
Nix
13 lines
231 B
Nix
{ ... }: {
|
|
disko.devices.disk.vda.content.partitions.luks = {
|
|
size = "100%";
|
|
content = {
|
|
type = "luks";
|
|
name = "crypted";
|
|
content = {
|
|
type = "lvm_pv";
|
|
vg = "pool";
|
|
};
|
|
};
|
|
};
|
|
}
|