diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-08 17:24:21 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-08 17:24:21 -0600 |
commit | a75b69b88f967e6271d75a1bc122da0b2e4eeece (patch) | |
tree | 20b7fb1bec30f68e61846c45a481bee174f4af9f /macos.local/.flake/home/programs/ssh.nix.org | |
parent | a1cbc273fb92c69ea1b8534f6ef6064b5da40e31 (diff) |
system changes
Diffstat (limited to 'macos.local/.flake/home/programs/ssh.nix.org')
-rw-r--r-- | macos.local/.flake/home/programs/ssh.nix.org | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/macos.local/.flake/home/programs/ssh.nix.org b/macos.local/.flake/home/programs/ssh.nix.org index e1ba2ca..28f779f 100644 --- a/macos.local/.flake/home/programs/ssh.nix.org +++ b/macos.local/.flake/home/programs/ssh.nix.org @@ -1,6 +1,6 @@ #+title: SSH Configuration -Configure SSH. Keys should be added to the SSH agent. Specify the key file and use the system keychain. +Configure SSH. Keys should be added to the SSH agent. Use the system keychain on all configurations. #+begin_src nix { config, pkgs, ... }: { @@ -14,30 +14,21 @@ Configure SSH. Keys should be added to the SSH agent. Specify the key file and u "UseKeychain" = "yes"; }; }; -#+end_src -Here is my University of Manitoba computer science SSH server. My account is =janzenj2=. -#+begin_src nix - "aviary" = { - hostname = "aviary.cs.umanitoba.ca"; - user = "janzenj2"; - setEnv = { - "TERM" = "xterm"; - }; - }; -#+end_src + "aviary" = { + hostname = "aviary.cs.umanitoba.ca"; + user = "janzenj2"; + setEnv = { + "TERM" = "xterm"; + }; + }; -Here is my web server at =jjanzen.ca=. Set the =$TERM= variable to =xterm=. -#+begin_src nix - "jjanzen.ca" = { - setEnv = { - "TERM" = "xterm"; - }; - }; -#+end_src + "jjanzen.ca" = { + setEnv = { + "TERM" = "xterm"; + }; + }; -Here is my oracle cloud instance login. Use the =opc= user and a provided key file. Set the =$TERM= variable to =xterm=. -#+begin_src nix "oracle" = { setEnv = { "TERM" = "xterm"; |