depot/cluster/services/idm/default.nix

24 lines
392 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;
2023-06-11 03:00:46 +03:00
client = [
./client.nix
./policies/infra-admins.nix
];
2023-06-10 18:54:03 +03:00
};
};
}