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