blob: 7097aaa04bda5db1836cf5f85eb7c56289ee9ad9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ hostConfigurations, ... }:
{
programs.ssh.knownHosts = {
"github.com".publicKey =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
"builder".publicKey = hostConfigurations.framebox.publicKey;
"framebox".publicKey = hostConfigurations.framebox.publicKey;
};
}
|