From 33bb9fc3844377b5203943ca1dfbe3919c278770 Mon Sep 17 00:00:00 2001 From: FredzyW Date: Mon, 10 Jun 2024 09:58:34 +0200 Subject: [PATCH] Added more ssh hosts --- moduler/common/kitty.nix | 2 +- moduler/common/ssh.nix | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/moduler/common/kitty.nix b/moduler/common/kitty.nix index 3c15abe..96b406b 100644 --- a/moduler/common/kitty.nix +++ b/moduler/common/kitty.nix @@ -7,7 +7,7 @@ size = 20; } else { name = "FiraCode Nerd Font"; - size = 18; + size = 16; }; shellIntegration = { mode = "no-cursor"; diff --git a/moduler/common/ssh.nix b/moduler/common/ssh.nix index f08046f..d880a38 100644 --- a/moduler/common/ssh.nix +++ b/moduler/common/ssh.nix @@ -20,6 +20,24 @@ port = 22; user = "fr7658wa-s"; }; + "dm2" = { + hostname = "docker-master2"; + port = 22; + user = "fw"; + identityFile = "/home/fw/.ssh/fw-ssh-key"; + }; + "ha1" = { + hostname = "hosted-agent-1"; + port = 22; + user = "fw"; + identityFile = "/home/fw/.ssh/fw-ssh-key"; + }; + "ba6" = { + hostname = "buildagent6"; + port = 22; + user = "fw"; + identityFile = "/home/fw/.ssh/fw-ssh-key"; + }; }; }; }