diff --git a/lib/ssh.nix b/lib/ssh.nix index 68693c4..e13b5a2 100644 --- a/lib/ssh.nix +++ b/lib/ssh.nix @@ -4,7 +4,7 @@ _: mkPubKey = name: type: publicKey: { "${name}-${type}" = { extraHostNames = [ name ]; - inherit publicKey; + publicKey = "${type} ${publicKey}"; }; }; }