summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-08-24 16:46:36 +0200
committerlassulus <lassulus@lassul.us>2022-08-24 20:15:18 +0200
commit88cb7a47196220431f45df6d9f616a63015deb4b (patch)
treeb796091caf6e392a3046aed292f45028facda7ff /example
parent9bca66ca7d2f8c9ac39d1f4a067ae45e681b87f9 (diff)
add mdadm support
Diffstat (limited to 'example')
-rw-r--r--example/raid.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/example/raid.nix b/example/raid.nix
new file mode 100644
index 0000000..490ea01
--- /dev/null
+++ b/example/raid.nix
@@ -0,0 +1,60 @@
+# usage: nix-instantiate --eval --json --strict example/config.nix | jq .
+{
+ type = "devices";
+ content = {
+ vdb = {
+ type = "table";
+ format = "gpt";
+ partitions = [
+ {
+ type = "partition";
+ part-type = "primary";
+ start = "1MiB";
+ end = "100%";
+ content = {
+ type = "mdraid";
+ name = "raid1";
+ };
+ }
+ ];
+ };
+ vdc = {
+ type = "table";
+ format = "gpt";
+ partitions = [
+ {
+ type = "partition";
+ part-type = "primary";
+ start = "1MiB";
+ end = "100%";
+ content = {
+ type = "mdraid";
+ name = "raid1";
+ };
+ }
+ ];
+ };
+ raid1 = {
+ type = "mdadm";
+ level = 1;
+ content = {
+ type = "table";
+ format = "gpt";
+ partitions = [
+ {
+ type = "partition";
+ part-type = "primary";
+ start = "1MiB";
+ end = "100%";
+ content = {
+ type = "filesystem";
+ format = "ext4";
+ mountpoint = "/raid";
+ };
+ }
+ ];
+
+ };
+ };
+ };
+}