nix-dotfiles/lib/ssh.nix

11 lines
159 B
Nix
Raw Normal View History

2023-12-23 06:49:01 +01:00
_:
{
mkPubKey = name: type: publicKey: {
"${name}-${type}" = {
extraHostNames = [ name ];
publicKey = "${type} ${publicKey}";
};
};
}