2025-07-16 17:24:57 +02:00
|
|
|
{ lib, osConfig, ... }:
|
2025-07-12 00:28:21 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
programs = {
|
|
|
|
ssh = {
|
|
|
|
enable = true;
|
|
|
|
addKeysToAgent = "1h";
|
|
|
|
hashKnownHosts = true;
|
|
|
|
matchBlocks = {
|
|
|
|
gitea = {
|
|
|
|
hostname = "code.beancloud.de";
|
|
|
|
user = "gitea";
|
|
|
|
port = 22;
|
|
|
|
};
|
2025-07-16 17:24:57 +02:00
|
|
|
k8s = lib.mkIf osConfig.beancloud.software.splunk {
|
2025-08-11 00:57:43 +02:00
|
|
|
hostname = "192.168.101.10";
|
2025-07-16 17:24:57 +02:00
|
|
|
user = "demo";
|
|
|
|
port = 10023;
|
|
|
|
};
|
2025-07-12 00:28:21 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|