forked from Fediversity/Fediversity
test deployments using data obtained through the data model in VMs. caveats: - SSH currently has a `run` abstraction that the nixops4 model still lacks - the deployed (trivial) configuration on activation has not facilitated new ssh connections (for subsequent) updates, i.e. a more sophisticated configuration would be needed for real-life usage. Reviewed-on: Fediversity/Fediversity#505
19 lines
278 B
Nix
19 lines
278 B
Nix
{
|
|
runNixOSTest,
|
|
inputs,
|
|
sources,
|
|
}:
|
|
|
|
runNixOSTest {
|
|
imports = [
|
|
../common/nixosTest.nix
|
|
./nixosTest.nix
|
|
];
|
|
_module.args = { inherit inputs sources; };
|
|
inherit (import ./constants.nix)
|
|
targetMachines
|
|
pathToRoot
|
|
pathFromRoot
|
|
useFlake
|
|
;
|
|
}
|