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