about summary refs log tree commit diff
path: root/nixos/tests/installer-systemd-stage-1.nix
blob: 1dd55dada042a2caa34e9522e584c9977000f98a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ system ? builtins.currentSystem
, config ? {}
, pkgs ? import ../.. { inherit system config; }
}:

{
  # Some of these tests don't work with systemd stage 1 yet. Uncomment
  # them when fixed.
  inherit (import ./installer.nix { inherit system config pkgs; systemdStage1 = true; })
    # bcache
    bcachefsSimple
    bcachefsEncrypted
    btrfsSimple
    btrfsSubvolDefault
    btrfsSubvolEscape
    btrfsSubvols
    encryptedFSWithKeyfile
    # grub1
    luksroot
    luksroot-format1
    luksroot-format2
    # lvm
    separateBoot
    separateBootFat
    separateBootZfs
    simple
    simpleLabels
    simpleProvided
    simpleSpecialised
    simpleUefiGrub
    simpleUefiGrubSpecialisation
    simpleUefiSystemdBoot
    stratisRoot
    swraid
    zfsroot
    clevisLuks
    clevisLuksFallback
    clevisZfs
    clevisZfsFallback
    gptAutoRoot
    clevisBcachefs
    clevisBcachefsFallback
    ;

}