create handleTest function for future tests

This commit is contained in:
Simon Gardling 2025-08-07 20:25:07 -07:00
parent 2875d29293
commit 003418b27b
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -4,6 +4,9 @@
pkgs,
...
}:
let
handleTest = file: import file { inherit config lib pkgs; };
in
{
zfsTest = import ./zfs.nix { inherit config lib pkgs; };
zfsTest = handleTest ./zfs.nix;
}