forked from fediversity/fediversity
17 lines
235 B
Nix
17 lines
235 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
checks.proxmox-basic = pkgs.testers.runNixOSTest {
|
|
imports = [
|
|
./proxmoxTest.nix
|
|
];
|
|
_module.args.inputs = inputs;
|
|
};
|
|
};
|
|
}
|