{ config, pkgs, lib, self, ... }: with lib; let psCfg = config.pub-solar; in { home-manager = pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] { programs.ssh = { enable = true; matchBlocks = { "hsha" = { hostname = "192.168.42.5"; user = "root"; port = 2222; }; "ringo" = { hostname = "192.168.42.231"; user = "hensoko"; port = 22; }; "giggles" = { user = "iot"; }; "norman" = { user = "hensoko"; }; "cox" = { user = "iot"; }; "companion" = { user = "iot"; }; "cube" = { hostname = "80.244.242.2"; user = "iot"; port = 2222; }; "mail" = { hostname = "mail.gssws.de"; user = "root"; port = 2222; }; "git" = { hostname = "git.gssws.de"; user = "git"; port = 2222; }; "falcone" = { hostname = "192.168.42.117"; user = "iot"; }; }; extraConfig = "PubKeyAcceptedKeyTypes +ssh-rsa"; }; }; }