From 4fafc9cff100391177c2682ae19ea003a1306115 Mon Sep 17 00:00:00 2001 From: steven carpenter Date: Tue, 19 Aug 2025 02:28:28 -0400 Subject: [PATCH] Updated ssh config for use with wishlist --- modules/home-manager/ssh.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/ssh.nix b/modules/home-manager/ssh.nix index 63261f5..447d0fa 100644 --- a/modules/home-manager/ssh.nix +++ b/modules/home-manager/ssh.nix @@ -9,7 +9,19 @@ hostname = "git.skdevstudios.com"; user = "git"; port = 2223; - identityFile = "~/.ssh/id_ed25519"; # Adjust as needed + identityFile = "~/.ssh/id_ed25519"; + }; + "olympus" = { + hostname = "192.168.1.5"; + user = "administrator"; + port = 22; + identityFile = "~/.ssh/id_ed25519"; + }; + "snips" = { + hostname = "snips.sh"; + user = "speccon18"; + port = 22; + identityFile = "~/.ssh/id_ed25519"; }; }; };