16 lines
295 B
Nix
16 lines
295 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}@args:
|
|
let
|
|
handleTest = file: import file (args);
|
|
in
|
|
{
|
|
zfsTest = handleTest ./zfs.nix;
|
|
testTest = handleTest ./testTest.nix;
|
|
minecraftTest = handleTest ./minecraft.nix;
|
|
jellyfinQbittorrentMonitorTest = handleTest ./jellyfin-qbittorrent-monitor.nix;
|
|
}
|