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