aboutsummaryrefslogtreecommitdiffstats
path: root/home/sadbeast/features/ssh.nix
blob: d6ee92c0b8983ebc596e79f785707947b90fb535 (plain) (blame)
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
32
{
  programs.ssh = {
    enable = true;

    matchBlocks = {
      "falken" = {
        hostname = "sadbeast.com";
        port = 6973;
      };

      "crystalpalace" = {
        hostname = "192.168.0.2";
        port = 6973;
      };

      "joshua" = {
        hostname = "192.168.0.3";
      };

      "teamdraft" = {
        hostname = "teamdraft.net";
        port = 6973;
      };

      "work" = {
        hostname = "192.168.0.26";
        forwardX11 = true;
        forwardX11Trusted = true;
      };
    };
  };
}