disko/tests/simple-efi.nix

11 lines
251 B
Nix
Raw Normal View History

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