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