13 lines
144 B
Nix
13 lines
144 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
handleTest = file: import file { inherit config lib pkgs; };
|
|
in
|
|
{
|
|
zfsTest = handleTest ./zfs.nix;
|
|
}
|