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"; }; }; }; }