mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
12 lines
258 B
Nix
12 lines
258 B
Nix
|
{ pkgs ? import <nixpkgs> { }
|
||
|
, diskoLib ? pkgs.callPackage ../lib { }
|
||
|
}:
|
||
|
diskoLib.testLib.makeDiskoTest {
|
||
|
inherit pkgs;
|
||
|
name = "hybrid-mbr";
|
||
|
disko-config = ../example/hybrid-mbr.nix;
|
||
|
extraTestScript = ''
|
||
|
machine.succeed("mountpoint /");
|
||
|
'';
|
||
|
}
|