home-manager/modules/programs
Christopher League 5770af8fd8 Add programs.ssh module to generate .ssh/config
This doesn't embed ALL the options for the ssh client, but I based it
on options I use regularly. Here's an example usage extracted and
edited from my home.nix:

```nix
  programs.ssh = {
    enable = true;
    forwardAgent = true;
    controlMaster = "auto";
    hosts = {
      "something.blah.edu" = {
        port = 1024;
        user = "cleague";
        identitiesOnly = true;
      };
      "host1 host2 host2.net host2.com" = {
        port = 7422;
        hostname = "example.com";
        serverAliveInterval = 60;
      };
      "lucian" = {
        forwardX11 = true;
        forwardX11Trusted = true;
        checkHostIP = false;
      };
    };
  };
```
2017-05-09 21:18:32 -04:00
..
bash.nix pam: add module 2017-01-16 23:54:45 +01:00
beets.nix Improve a few description fields 2017-01-15 23:42:48 +01:00
eclipse.nix Initial import 2017-01-14 13:15:24 +01:00
emacs.nix Initial import 2017-01-14 13:15:24 +01:00
firefox.nix firefox: add module 2017-01-15 23:42:46 +01:00
git.nix git: remove default signing key 2017-02-12 10:02:06 +01:00
gnome-terminal.nix Add basic directed acyclic graph data structure 2017-05-04 00:39:36 +02:00
lesspipe.nix Initial import 2017-01-14 13:15:24 +01:00
ssh.nix Add programs.ssh module to generate .ssh/config 2017-05-09 21:18:32 -04:00
texlive.nix Initial import 2017-01-14 13:15:24 +01:00