Release NixOS 23.11
[NixPkgs.git] / nixos / tests / installer-systemd-stage-1.nix
blob1b4c92b584b9581528a84ebcb4352e08a5d3c58a
1 { system ? builtins.currentSystem
2 , config ? {}
3 , pkgs ? import ../.. { inherit system config; }
4 }:
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     ;