mirror of
https://github.com/nix-community/disko.git
synced 2026-01-15 18:58:35 +01:00
12 lines
262 B
Nix
12 lines
262 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
diskoLib ? pkgs.callPackage ../lib { },
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "simple-efi";
|
|
disko-config = ../example/simple-efi.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
'';
|
|
}
|