22
0
mirror of https://github.com/SuperSandro2000/nixos-modules.git synced 2024-06-11 18:54:06 +02:00
nixos-modules/lib/ssh.nix

11 lines
148 B
Nix
Raw Normal View History

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