mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 21:14:33 +03:00
12 lines
281 B
Nix
12 lines
281 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = ../example/gpt-bios-compat.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
'';
|
|
efi = false;
|
|
grub-devices = [ "/dev/vdb" ];
|
|
}
|