disko/tests/with-lib.nix

13 lines
295 B
Nix
Raw Normal View History

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