summaryrefslogtreecommitdiff
path: root/home/common/modules/ssh.nix
blob: 03bfd02247eecf74d336561a01c0673847b35334 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, ... }:
let
  domain = config.global.userdata.domain;
in
{
  programs.ssh = {
    enable = true;
    enableDefaultConfig = false;

    matchBlocks = {
      "*".compression = true;
      "kay".hostname = domain;
      "exy" = {
        port = 8022;
        user = "u0_a369";
      };
    };
  };
}