From 5f27edbd21abe5aae2cab5ed26eb9acab7247bd0 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 14 Sep 2022 14:27:38 +0200 Subject: [PATCH 1/2] ignore macOS specific file artifacts --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store From 61af7f0a9960558804c5182b85f35b6e5b6ed5f7 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 14 Sep 2022 14:43:14 +0200 Subject: [PATCH 2/2] 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;