blob: 920920fd120af25c9d1b54274b332ccee33c7f33 (
plain)
1
2
3
4
5
6
7
8
9
|
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
disko-config = ../example/simple-efi.nix;
extraTestScript = ''
machine.succeed("mountpoint /");
'';
}
|