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