colmena/integration-tests/flakes/hive.nix
2021-12-05 01:14:12 -08:00

21 lines
349 B
Nix

{ pkgs }:
let
tools = import ./tools.nix {
insideVm = true;
targets = [ "alpha" ];
};
in {
meta = {
nixpkgs = tools.pkgs;
};
deployer = tools.getStandaloneConfigFor "deployer";
alpha = {
imports = [
(tools.getStandaloneConfigFor "alpha")
];
environment.etc."deployment".text = import ./probe.nix;
};
}