mirror of
https://github.com/nix-community/disko
synced 2024-11-12 23:27:07 +00:00
13 lines
316 B
Nix
13 lines
316 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "with-lib";
|
|
disko-config = ../example/with-lib.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
'';
|
|
efi = false;
|
|
grub-devices = [ "/dev/vdb" ];
|
|
}
|