36 lines
1.3 KiB
Nix
36 lines
1.3 KiB
Nix
let
|
|
krops = builtins.fetchGit { url = "https://cgit.krebsco.de/krops/"; };
|
|
lib = import "${krops}/lib";
|
|
pkgs = import "${krops}/pkgs" { };
|
|
source = machine:
|
|
lib.evalSource [{
|
|
config.file = toString ./machines;
|
|
nixos-config.symlink = "config/${machine}/configuration.nix";
|
|
# Auto-upgrade wen?
|
|
nixpkgs.git = {
|
|
clean.exclude = [ "/.version-suffix" ];
|
|
ref = "8d3bd93e67201a7c8238e9cbde6d07aba9500636"; # nixos-unstable
|
|
url = "https://github.com/NixOS/nixpkgs";
|
|
};
|
|
}];
|
|
mkTestConfig = hostname: {
|
|
name = "test-${hostname}";
|
|
value = pkgs.krops.writeTest "test-${hostname}" {
|
|
source = source hostname;
|
|
target = lib.mkTarget {
|
|
host = "localhost";
|
|
path = "/tmp/src";
|
|
};
|
|
force = true; # force create the sentinel file.
|
|
};
|
|
};
|
|
mkTestsConfig = hostnames: builtins.listToAttrs (map mkTestConfig hostnames);
|
|
mkDeploy = hostname: target: { ${hostname} = pkgs.krops.writeDeploy "deploy-${hostname}" {
|
|
source = source hostname;
|
|
inherit target;
|
|
}; };
|
|
in {}
|
|
// mkDeploy "core-services-01" "root@core01.rz.ens.wtf"
|
|
// mkDeploy "remote-builder-01" "root@nix01.builders.rz.ens.wtf"
|
|
// mkDeploy "public-cof" "root@beta.rz.ens.wtf"
|
|
// mkTestsConfig [ "core-services-01" "remote-builder-01" "public-cof" ]
|