diff --git a/lib/types/lvm_vg.nix b/lib/types/lvm_vg.nix index 83397fb..bfe7ec7 100644 --- a/lib/types/lvm_vg.nix +++ b/lib/types/lvm_vg.nix @@ -24,7 +24,7 @@ description = "Size of the logical volume"; }; lvm_type = lib.mkOption { - type = lib.types.nullOr (lib.types.enum [ "mirror" "raid0" "raid1" ]); # TODO add all lib.types + type = lib.types.nullOr (lib.types.enum [ "mirror" "raid0" "raid1" "raid5" "raid6" ]); # TODO add all lib.types default = null; # maybe there is always a default type? description = "LVM type"; };