forked from fediversity/fediversity
28 lines
462 B
Nix
28 lines
462 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
sources,
|
|
}:
|
|
pkgs.testers.runNixOSTest {
|
|
node.specialArgs = {
|
|
inherit
|
|
sources
|
|
pkgs
|
|
;
|
|
};
|
|
imports = [
|
|
../../data-model.nix
|
|
../../function.nix
|
|
../common/nixosTest.nix
|
|
./nixosTest.nix
|
|
];
|
|
_module.args = {
|
|
inherit inputs sources;
|
|
modulesPath = "${builtins.toString pkgs.path}/nixos/modules";
|
|
};
|
|
inherit (import ./constants.nix)
|
|
targetMachines
|
|
pathToRoot
|
|
pathFromRoot
|
|
;
|
|
}
|