22
0
mirror of https://github.com/SuperSandro2000/nixos-modules.git synced 2024-06-02 06:19:22 +02:00

ssh: fix knownhosts entires missing key type

This commit is contained in:
Sandro - 2023-01-19 00:13:22 +01:00
parent d3f1a3df89
commit 3190cdda2e
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -4,7 +4,7 @@ _:
mkPubKey = name: type: publicKey: {
"${name}-${type}" = {
extraHostNames = [ name ];
inherit publicKey;
publicKey = "${type} ${publicKey}";
};
};
}