summaryrefslogtreecommitdiffstats
path: root/example/raid.nix
diff options
context:
space:
mode:
Diffstat (limited to 'example/raid.nix')
-rw-r--r--example/raid.nix60
1 files changed, 0 insertions, 60 deletions
diff --git a/example/raid.nix b/example/raid.nix
deleted file mode 100644
index 490ea01..0000000
--- a/example/raid.nix
+++ /dev/null
@@ -1,60 +0,0 @@
-# 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";
- };
- }
- ];
-
- };
- };
- };
-}