1
0

ssh.nix 282 B

1234567891011121314151617
  1. {
  2. programs.ssh = {
  3. enable = true;
  4. compression = true;
  5. forwardAgent = true;
  6. matchBlocks = {
  7. modgud = {
  8. hostname = "modgud.t5.st";
  9. user = "thomas";
  10. };
  11. "github.com".user = "git";
  12. github.hostname = "github.com";
  13. };
  14. };
  15. }