diff options
Diffstat (limited to 'common.nix')
-rw-r--r-- | common.nix | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -45,6 +45,25 @@ in path = "${homedir}/cfg/home-manager"; }; + ssh = { + enable = true; + forwardAgent = true; + matchBlocks = { + hidor-kahih = { + hostname = "home.simatime.com"; + user = "ben"; + identityFile = [ "${homedir}/.ssh/hidor-kahih" ]; + identitiesOnly = true; + }; + nutin-madaj = { + hostname = "simatime.com"; + user = "ben"; + identityFile = [ "${homedir}/.ssh/id_rsa" ]; + identitiesOnly = true; + }; + }; + }; + direnv = { enable = true; }; |