nixos-modules/lib/ssh.nix

11 lines
148 B
Nix

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