disko/tests/lvm-raid.nix

19 lines
489 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { }
, diskoLib ? pkgs.callPackage ../lib { }
2022-08-25 19:36:56 +03:00
}:
diskoLib.testLib.makeDiskoTest {
inherit pkgs;
2023-02-21 19:19:39 +03:00
name = "lvm-raid";
2022-10-29 14:19:29 +03:00
disko-config = ../example/lvm-raid.nix;
2022-08-26 00:12:49 +03:00
extraTestScript = ''
machine.succeed("mountpoint /home");
2022-08-25 19:36:56 +03:00
'';
extraInstallerConfig = {
boot.kernelModules = [ "dm-raid" "raid0" "dm-mirror" ];
2022-08-26 00:12:49 +03:00
};
extraSystemConfig = {
# sadly systemd-boot fails to install to a raid /boot device
boot.loader.systemd-boot.enable = false;
};
2022-08-25 19:36:56 +03:00
}