mlaga97-nix/disko/libvirt/luks-lvm.nix

14 lines
231 B
Nix

{ ... }: {
disko.devices.disk.vda.content.partitions.luks = {
size = "100%";
content = {
type = "luks";
name = "crypted";
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
}