forked from fediversity/fediversity
23 lines
358 B
Nix
23 lines
358 B
Nix
{
|
|
pkgs,
|
|
runNixOSTest,
|
|
inputs,
|
|
sources,
|
|
}:
|
|
|
|
runNixOSTest {
|
|
imports = [
|
|
../common/nixosTest.nix
|
|
./nixosTest.nix
|
|
];
|
|
_module.args = {
|
|
inherit inputs sources;
|
|
modulesPath = "${builtins.toString pkgs.path}/nixos/modules";
|
|
};
|
|
inherit (import ./constants.nix)
|
|
targetMachines
|
|
pathToRoot
|
|
pathFromRoot
|
|
useFlake
|
|
;
|
|
}
|