Use home-manager to support SSH

I didn't port everything from .ssh/config to home-manager. I omitted a few hosts
that I don't connect to anymore. I also omitted the `corp-ssh-helper`
configuration.
This commit is contained in:
William Carroll 2020-03-05 14:22:32 +00:00
parent 86e1b82d2d
commit df035ca832
2 changed files with 14 additions and 26 deletions

View file

@ -43,6 +43,20 @@
};
};
programs.ssh = {
enable = true;
matchBlocks = {
desktop = {
user = "wpcarro";
hostname = "zeno.lon.corp.google.com";
};
socrates = {
user = "wpcarro";
hostname = "84.92.33.141";
};
};
};
##############################################################################
# Services
##############################################################################