home-manager/modules
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
..
lib Add basic directed acyclic graph data structure 2017-05-04 00:39:36 +02:00
misc gtk: fix bug in condition 2017-01-17 18:16:45 +01:00
programs Add programs.ssh module to generate .ssh/config 2017-05-09 21:18:32 -04:00
services redshift: add module 2017-01-20 19:26:52 +01:00
activation-init.sh Avoid undefined variables in activation script 2017-03-29 00:11:01 +02:00
default.nix Add programs.ssh module to generate .ssh/config 2017-05-09 21:18:32 -04:00
home-environment.nix Add basic directed acyclic graph data structure 2017-05-04 00:39:36 +02:00
manual.nix manual: add module 2017-01-15 23:42:48 +01:00
systemd.nix Add basic directed acyclic graph data structure 2017-05-04 00:39:36 +02:00
xresources.nix Improve a few description fields 2017-01-15 23:42:48 +01:00
xsession.nix xsession: always source ~/.profile 2017-01-28 18:29:27 +01:00