diff options
author | Ben Sima <ben@bsima.me> | 2023-12-07 15:26:36 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-12-07 15:26:36 -0500 |
commit | 7586a48f5df5ef6c8ddbc7c98a56e9af378841cf (patch) | |
tree | bc6c316c4f5ad757dd929e9f225200ff73fbd0f2 /lib/ssh.nix | |
parent | 22f4708aa8d1920ad100e8d5d532607142f8e746 (diff) |
add beryllium
Diffstat (limited to 'lib/ssh.nix')
-rw-r--r-- | lib/ssh.nix | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/lib/ssh.nix b/lib/ssh.nix index 452f810..013e727 100644 --- a/lib/ssh.nix +++ b/lib/ssh.nix @@ -12,13 +12,6 @@ in { # RemoteForward %d/.gnupg/S.gpg-agent ''${HOME}/.gnupg/S.gpg-agent.extra ''; matchBlocks = { - "github.com" = { - hostname = "github.com"; - user = "git"; - identityFile = [ "${homedir}/.ssh/id_rsa" ]; - identitiesOnly = true; - }; - # groq "bsima" = { hostname = "bsima"; # must be on vpn @@ -45,12 +38,14 @@ in { identityFile = [ "${homedir}/.ssh/id_rsa" ]; identitiesOnly = true; }; - "simatime.com" = { - hostname = "simatime.com"; - user = "git"; - identityFile = [ "${homedir}/.ssh/id_rsa" ]; - identitiesOnly = true; - }; + #"simatime.com" = { + # hostname = "simatime.com"; + # user = "git"; + # identitiesOnly = true; + # extraOptions = { + # # PKCS11Provider = "/run/current-system/sw/lib/opensc-pkcs11.so"; + # }; + #}; "gerrit.simatime.com" = { hostname = "gerrit.simatime.com"; user = "bsima"; @@ -63,11 +58,11 @@ in { identityFile = [ "${homedir}/.ssh/id_rsa" ]; identitiesOnly = true; }; - "dev.simatime.com" = { - user = "ben"; - identityFile = [ "${homedir}/.ssh/id_rsa" ]; - identitiesOnly = true; - }; + #"dev.simatime.com" = { + # user = "ben"; + # identityFile = [ "${homedir}/.ssh/id_rsa" ]; + # identitiesOnly = true; + #}; "git.platonic.systems" = { hostname = "git.platonic.systems"; user = "git"; |