ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
{ ... }:

{

  programs.ssh = {
    enable         = true;
    compression    = true;

    controlMaster  = "auto";
    controlPersist = "2m";

    matchBlocks = {
      "ctucx-git" = {
        user     = "git";
        hostname = "hector.ctu.cx";
      };
    };
  };

}