From 88cb7a47196220431f45df6d9f616a63015deb4b Mon Sep 17 00:00:00 2001 From: lassulus Date: Wed, 24 Aug 2022 16:46:36 +0200 Subject: add mdadm support --- example/raid.nix | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 example/raid.nix (limited to 'example') 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"; + }; + } + ]; + + }; + }; + }; +} -- cgit v1.2.3