mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-11 23:50:05 +01:00
10 lines
306 B
Nix
10 lines
306 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = import ../example/gpt-bios-compat.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /mnt");
|
|
machine.succeed("grub-install --target=i386-pc /dev/vdb");
|
|
'';
|
|
}
|