2023-03-05 21:39:15 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.consul;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
hostLinks = lib.genAttrs cfg.nodes.agent (hostName: {
|
|
|
|
consul = {
|
|
|
|
ipv4 = config.vars.mesh.${hostName}.meshIp;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
services.consul = {
|
2023-04-12 20:36:26 +03:00
|
|
|
nodes.agent = [ "checkmate" "thunderskin" "VEGAS" "prophet" ];
|
2023-03-06 18:58:29 +02:00
|
|
|
nixos.agent = [
|
|
|
|
./agent.nix
|
|
|
|
./remote-api.nix
|
|
|
|
];
|
2023-03-05 21:39:15 +02:00
|
|
|
};
|
|
|
|
}
|