forked from DGNum/colmena
15 lines
265 B
Nix
15 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";
|
||
|
}
|