nixos-config/components/network/sshd/known-hosts-manual.nix

20 lines
290 B
Nix
Raw Normal View History

2024-06-10 17:24:21 +02:00
{ pkgs, config, lib, clanLib, ... }:
with lib;
let
publicKey = clanLib.readFact "ssh.id_ed25519.pub";
in
{
config = {
services.openssh.knownHosts = {
orbi = {
hostNames = [
"git.ingolf-wagner.de"
"95.216.66.212"
];
};
};
};
}