diff --git a/mac-setup b/mac-setup index f29fa16..95dd3c9 100755 --- a/mac-setup +++ b/mac-setup @@ -22,6 +22,7 @@ function install() { } install "macports" +install "generate_ssh_keys" install "finicky" install "bitwarden" install "nextcloud" diff --git a/recipes/mac-setup/generate_ssh_keys b/recipes/mac-setup/generate_ssh_keys new file mode 100755 index 0000000..f7ed102 --- /dev/null +++ b/recipes/mac-setup/generate_ssh_keys @@ -0,0 +1,4 @@ +#! /bin/bash + +log "Generate default ssh key for current host" +ssh-keygen -t ed25519 -C "${USER}@$(hostname)"