{ config, pkgs, ... }: let profile = import ../profile.nix; in { programs.ssh = { enable = true; enableDefaultConfig = false; matchBlocks."*" = { compression = true; serverAliveInterval = 60; }; extraConfig = '' Host git.nickr.eu HostName git.nickr.eu Port 22 Host nickr.eu HostName nickr.eu Port 222 Host nichkara.eu HostName nichkara.eu Port 222 Host git.nichkara.eu HostName git.nichkara.eu Port 22 ''; }; }