dotfiles/macos.local/flake/home/programs/ssh.nix.org
2025-03-11 16:53:44 -05:00

1.1 KiB

SSH Configuration

Configure SSH. Keys should be added to the SSH agent. Use the system keychain on all configurations.

  { config, pkgs, ... }:
  {
    programs.ssh = {
      enable = true;
      addKeysToAgent = "yes";
      matchBlocks = {
        "*" = {
          identityFile = "~/.ssh/id_ed25519";
          extraOptions = {
            "UseKeychain" = "yes";
          };
        };

        "aviary" = {
          hostname = "aviary.cs.umanitoba.ca";
          user = "janzenj2";
          setEnv = {
            "TERM" = "xterm";
          };
        };

        "jjanzen.ca" = {
          setEnv = {
            "TERM" = "xterm";
          };
        };

        "minecraft" = {
          setEnv = {
            "TERM" = "xterm";
          };
          hostname = "jjanzen.ca";
          user = "minecraft";
        };

        "oracle" = {
          setEnv = {
            "TERM" = "xterm";
          };
          hostname = "jjanzen.ca";
          identityFile = "~/.ssh/oracle";
          identitiesOnly = true;
          user = "opc";
        };
      };
    };
  }