mlaga97-nix/nixos/disko/libvirt/lvm-ext4.nix

17 lines
284 B
Nix

{ ... }: {
disko.devices.lvm_vg.pool = {
type = "lvm_vg";
lvs.root = {
size = "100%FREE";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [
"defaults"
];
};
};
};
}