disko/tests/simple-efi.nix

11 lines
251 B
Nix
Raw Normal View History

2022-10-23 10:29:13 +00:00
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
2023-02-21 16:19:39 +00:00
name = "simple-efi";
2022-10-29 11:19:29 +00:00
disko-config = ../example/simple-efi.nix;
2022-10-23 10:29:13 +00:00
extraTestScript = ''
machine.succeed("mountpoint /");
'';
}