colmena/integration-tests/parallel/hive.nix

22 lines
507 B
Nix
Raw Normal View History

2021-12-03 08:49:35 +01:00
let
tools = import ./tools.nix { insideVm = true; };
in {
meta = {
nixpkgs = tools.pkgs;
};
defaults = {
environment.etc."deployment".text = "SUCCESS";
system.activationScripts.activationDelay.text = ''
>&2 echo "Activation triggered --- $(date +%s%N)"
sleep 3
'';
2021-12-03 08:49:35 +01:00
};
deployer = tools.getStandaloneConfigFor "deployer";
alpha = tools.getStandaloneConfigFor "alpha";
beta = tools.getStandaloneConfigFor "beta";
gamma = tools.getStandaloneConfigFor "gamma";
}