mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
12 lines
258 B
Nix
12 lines
258 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 /");
|
|
'';
|
|
}
|