aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/programs/ssh.nix
blob: 8c079b072b6062e96636bcb03615470543185ed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  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 = "";
      # };
    };
  };
}