aboutsummaryrefslogblamecommitdiffstats
path: root/home-manager/programs/ssh.nix
blob: 8c079b072b6062e96636bcb03615470543185ed0 (plain) (tree)



















                                          
{
  programs.ssh = {
    enable = true;
    matchBlocks = {
      "portal" = {
        hostname = "portal.eyesin.space";
        port = 22;
        user = "root";
      };
      "gizmo" = {
        hostname = "37.60.220.238";
        port = 22;
        user = "root";
      };
      # "*" = {
      #   extraOptions.IdentityAgent = "";
      # };
    };
  };
}