From 61af7f0a9960558804c5182b85f35b6e5b6ed5f7 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 14 Sep 2022 14:43:14 +0200 Subject: [PATCH] ssh-config: nixify flyingcircus SSH config --- home/home.nix | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/home/home.nix b/home/home.nix index 19fc5ee..df58067 100644 --- a/home/home.nix +++ b/home/home.nix @@ -303,13 +303,21 @@ in # pinentryFlavor = "qt"; # }; -# programs.ssh = -# { -# enable = true; -# # ssh host config -# matchBlocks = -# import ./secrets/ssh_hosts.nix; -# }; + programs.ssh = + { + enable = true; + # ssh host config + matchBlocks = { + "hydra01" = { + hostname = "hydra01.fe.whq.fcio.net"; + user = "os"; + }; + "fcio-whq-jump" = { + hostname = "vpn-whq.services.fcio.net"; + extraOptions.LogLevel = "Verbose"; + }; + }; + }; programs.tmux = { enable = true;