disko/tests/gpt-bios-compat.nix

13 lines
297 B
Nix
Raw Normal View History

{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
}:
makeDiskoTest {
inherit pkgs;
2023-02-21 19:19:39 +03:00
name = "gpt-bios-compat";
2022-10-29 14:19:29 +03:00
disko-config = ../example/gpt-bios-compat.nix;
extraTestScript = ''
machine.succeed("mountpoint /");
'';
efi = false;
}