disko/tests/with-lib.nix

13 lines
269 B
Nix
Raw Normal View History

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