mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
17 lines
446 B
Nix
17 lines
446 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "boot-raid1";
|
|
disko-config = ../example/boot-raid1.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -b /dev/md/boot");
|
|
machine.succeed("mountpoint /boot");
|
|
'';
|
|
extraSystemConfig = {
|
|
# sadly systemd-boot fails to install to a raid /boot device
|
|
boot.loader.systemd-boot.enable = false;
|
|
};
|
|
}
|