forked from DGNum/colmena
dd7a2924ca
unify meta access for machinesFile update release note and config name
14 lines
265 B
Nix
14 lines
265 B
Nix
let
|
|
tools = import ./tools.nix {
|
|
insideVm = true;
|
|
targets = ["alpha"];
|
|
};
|
|
in {
|
|
meta = {
|
|
nixpkgs = tools.pkgs;
|
|
allowApplyAll = false;
|
|
};
|
|
|
|
deployer = tools.getStandaloneConfigFor "deployer";
|
|
alpha = tools.getStandaloneConfigFor "alpha";
|
|
}
|