1{
2 system ? builtins.currentSystem,
3 config ? { },
4 pkgs ? import ../.. { inherit system config; },
5}:
6
7{
8 # Some of these tests don't work with systemd stage 1 yet. Uncomment
9 # them when fixed.
10 inherit
11 (import ./installer.nix {
12 inherit system config pkgs;
13 systemdStage1 = true;
14 })
15 # bcache
16 bcachefsSimple
17 bcachefsEncrypted
18 btrfsSimple
19 btrfsSubvolDefault
20 btrfsSubvolEscape
21 btrfsSubvols
22 encryptedFSWithKeyfile
23 # grub1
24 luksroot
25 luksroot-format1
26 luksroot-format2
27 lvm
28 separateBoot
29 separateBootFat
30 separateBootZfs
31 simple
32 simpleLabels
33 simpleProvided
34 simpleSpecialised
35 simpleUefiGrub
36 simpleUefiGrubSpecialisation
37 simpleUefiSystemdBoot
38 stratisRoot
39 swraid
40 zfsroot
41 clevisLuks
42 clevisLuksFallback
43 clevisZfs
44 clevisZfsFallback
45 clevisZfsParentDataset
46 clevisZfsParentDatasetFallback
47 gptAutoRoot
48 clevisBcachefs
49 clevisBcachefsFallback
50 ;
51
52}