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