diff options
author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2022-08-24 19:20:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 19:20:53 +0100 |
commit | 1b836c97243970181502ca438309121a708e26db (patch) | |
tree | 408616d5534d28ecbf598fde02b2a9e8e6afbe86 /example | |
parent | 7328d8b41ed25b515a7f66678b1bec84d071264e (diff) | |
parent | 88cb7a47196220431f45df6d9f616a63015deb4b (diff) |
Merge pull request #22 from nix-community/raid2
add mdadm support
Diffstat (limited to 'example')
-rw-r--r-- | example/raid.nix | 60 |
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"; + }; + } + ]; + + }; + }; + }; +} |