disko/tests/with-lib.nix

12 lines
274 B
Nix
Raw Normal View History

2022-10-21 15:43:55 +03:00
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
2022-10-29 14:19:29 +03:00
disko-config = ../example/with-lib.nix;
2022-10-21 15:43:55 +03:00
extraTestScript = ''
machine.succeed("mountpoint /");
'';
efi = false;
grub-devices = [ "/dev/vdb" ];
}