22
0
mirror of https://github.com/SuperSandro2000/nixos-modules.git synced 2024-06-16 21:05:31 +02:00
nixos-modules/lib/ssh.nix

11 lines
159 B
Nix

_:
{
mkPubKey = name: type: publicKey: {
"${name}-${type}" = {
extraHostNames = [ name ];
publicKey = "${type} ${publicKey}";
};
};
}