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" ];
|
2023-06-11 18:05:35 +03:00
|
|
|
client = [ "checkmate" "VEGAS" "prophet" "soda" "thunderskin" ];
|
2023-06-10 18:54:03 +03:00
|
|
|
};
|
|
|
|
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
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|