forked from DGNum/colmena
22 lines
349 B
Nix
22 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;
|
||
|
};
|
||
|
}
|