From 4a4d77a9aef2e2f182ee206986a98bb9b0a1a769 Mon Sep 17 00:00:00 2001 From: cvoges12 <38054771+cvoges12@users.noreply.github.com> Date: Mon, 25 Sep 2023 07:32:25 -0500 Subject: [PATCH] added raid5 and raid6 to lvm --- lib/types/lvm_vg.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; };