depot/cluster/services/idm/default.nix

28 lines
490 B
Nix

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