depot/cluster/services/idm/default.nix
2023-06-12 20:56:42 +02:00

21 lines
338 B
Nix

{ tools, ... }:
{
links.idm = {
ipv4 = "idm.${tools.meta.domain}";
port = 443;
protocol = "https";
};
services.idm = {
nodes = {
server = [ "VEGAS" ];
client = [ "checkmate" "VEGAS" "prophet" "thunderskin" ];
};
nixos = {
server = ./server.nix;
client = ./client.nix;
};
};
}