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

    matchBlocks = {
      "*".compression = true;
      "kay".hostname = domain;
    };
  };
}