From 9f7f23abdb161578316d94f45528fbf47982f4d9 Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 30 Sep 2022 12:55:28 +0200 Subject: add nixos tests for disko.config, extend/fix existing tests --- example/zfs.nix | 55 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 46 insertions(+), 9 deletions(-) (limited to 'example/zfs.nix') diff --git a/example/zfs.nix b/example/zfs.nix index 16da367..92ed688 100644 --- a/example/zfs.nix +++ b/example/zfs.nix @@ -1,19 +1,56 @@ -{ +{ disks ? [ "/dev/vdb" "/dev/vdc" ] }: { disk = { - vdb = { + x = { type = "disk"; - device = "/dev/vdb"; + device = builtins.elemAt disks 0; content = { - type = "zfs"; - pool = "zroot"; + type = "table"; + format = "gpt"; + partitions = [ + { + type = "partition"; + name = "ESP"; + start = "0"; + end = "64MiB"; + fs-type = "fat32"; + bootable = true; + content = { + type = "filesystem"; + format = "vfat"; + mountpoint = "/boot"; + }; + } + { + type = "partition"; + name = "zfs"; + start = "128MiB"; + end = "100%"; + content = { + type = "zfs"; + pool = "zroot"; + }; + } + ]; }; }; - vdc = { + y = { type = "disk"; - device = "/dev/vdc"; + device = builtins.elemAt disks 1; content = { - type = "zfs"; - pool = "zroot"; + type = "table"; + format = "gpt"; + partitions = [ + { + type = "partition"; + name = "zfs"; + start = "128MiB"; + end = "100%"; + content = { + type = "zfs"; + pool = "zroot"; + }; + } + ]; }; }; }; -- cgit v1.2.3