depot/cluster/services/idm/default.nix

21 lines
338 B
Nix
Raw Normal View History

2023-06-10 18:54:03 +03:00
{ 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;
};
};
}