2023-09-03 14:24:26 +02:00
|
|
|
{ config, ... }: {
|
2023-08-18 11:17:33 +02:00
|
|
|
|
2023-09-03 14:24:26 +02:00
|
|
|
services.openssh.hostKeys = [
|
2023-10-02 00:42:44 +02:00
|
|
|
{ bits = 4096; path = config.sops.secrets."${config.clanCore.machineName}-ssh_host_rsa_key".path; type = "rsa"; }
|
|
|
|
{ path = config.sops.secrets."${config.clanCore.machineName}-ssh_host_ed25519_key".path; type = "ed25519"; } ];
|
2023-08-18 11:17:33 +02:00
|
|
|
}
|