mirror of
https://github.com/nix-community/disko.git
synced 2024-11-09 20:02:37 +03:00
11 lines
277 B
Nix
11 lines
277 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = ../example/boot-raid1.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -b /dev/md/boot");
|
|
machine.succeed("mountpoint /boot");
|
|
'';
|
|
}
|