zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
{

  config = {
    programs.ssh = {
      enable = true;
      extraConfig = ''
        VisualHostKey yes
      '';
      matchBlocks = {
        "*" = {
          controlMaster = "auto";
          controlPersist = "10m";
          serverAliveInterval = 30;
        };
        hortorum = {
          hostname = "37.120.168.131";
          port = 18810;
        };
        hypocrita = {
          hostname = "45.9.63.29";
          port = 18810;
        };
        ignitus = {
          hostname = "185.207.106.120";
          port = 18810;
        };
      };
    };
  };

}