diff options
author | Ben Sima <ben@bsima.me> | 2022-11-08 19:59:12 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-11-08 20:02:49 -0500 |
commit | 5be90e0ef12ae62f14b1e14460d3bddf9299b903 (patch) | |
tree | f2def1a7cee7259ab0a241712bc07c55a083d310 /lib | |
parent | 15dcb4f3eee0d52c6f8f0d62e01a32007631e489 (diff) |
add gerrit ssh key
Change-Id: I3d7b449202840a8d5f55c8a11b5fee89a5e2702b
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ssh.nix b/lib/ssh.nix index 48b79ad..29cb677 100644 --- a/lib/ssh.nix +++ b/lib/ssh.nix @@ -47,6 +47,12 @@ in { identityFile = [ "${homedir}/.ssh/id_rsa" ]; identitiesOnly = true; }; + "gerrit.simatime.com" = { + hostname = "gerrit.simatime.com"; + user = "bsima"; + identityFile = [ "${homedir}/.ssh/gerrit.simatime.com" ]; + identitiesOnly = true; + }; "lithium" = { hostname = "192.168.1.9"; user = "ben"; |