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"; }; }; };