diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-16 23:28:56 -0600 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-16 23:28:56 -0600 |
commit | 26dd014860c0edd89a859d2d8c6dff10275acbad (patch) | |
tree | be704eafeb9458cf202240dc0108f13501ae4272 /macos.local/.flake/home/programs/ssh.nix.org | |
parent | 530ee85037375106652e51a23cf05deb2a5ad1d9 (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 | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/macos.local/.flake/home/programs/ssh.nix.org b/macos.local/.flake/home/programs/ssh.nix.org index 09eb34f..e9cf7ad 100644 --- a/macos.local/.flake/home/programs/ssh.nix.org +++ b/macos.local/.flake/home/programs/ssh.nix.org @@ -1,5 +1,6 @@ #+title: SSH Configuration +Configure SSH. Keys should be added to the SSH agent. Specify the key file and use the system keychain. #+begin_src nix { config, pkgs, ... }: { @@ -13,15 +14,27 @@ "UseKeychain" = "yes"; }; }; - "aviary" = { - hostname = "aviary.cs.umanitoba.ca"; - user = "janzenj2"; - }; - "jjanzen.ca" = { - setEnv = { - "TERM" = "xterm"; - }; - }; +#+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"; + }; +#+end_src + +Here is my web server at =jjanzen.ca=. Set the =$TERM= variable to =xterm=. +#+begin_src nix + "jjanzen.ca" = { + setEnv = { + "TERM" = "xterm"; + }; + }; +#+end_src + +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"; |