whatever-nix server setup
http://askubuntu.com/questions/46424/adding-ssh-keys-to-authorized-keys
## Do something here...
Generating SSH Key
## SSH Keygeneration Steps
> cd ~/.ssh
> ssh-keygen -t rsa -C "your_email@example.com"
> [Enter Passphrase]
> eval "$(ssh-agent -s)"
> ssh-add ~/.ssh/id_rsa
> pbcopy < ~/.ssh/id_rsa.pub
## You can now use this public key generated.
Config
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_your_key_github
Host bitbucket.org
HostName bitbucket.org
User git
IdentityFile ~/.ssh/id_rsa_your_key_bitbucket
Installation of NodeJs Ubuntu 14.04
Managing Deployment Keys
https://developer.github.com/guides/managing-deploy-keys/