From 18d93e6b0c7003b96be1763454b0827cc8d66f7a Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Fri, 24 Oct 2025 12:39:26 +0200 Subject: [PATCH] dedicated github ssh config host --- home-modules/ssh.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/home-modules/ssh.nix b/home-modules/ssh.nix index 87b4d1d..425819a 100644 --- a/home-modules/ssh.nix +++ b/home-modules/ssh.nix @@ -13,12 +13,11 @@ identityFile = "${hyper.home}/vault/ssh/nxace-nx2-${hyper.host}"; }; in { - "*" = { - identityFile = [ - "${hyper.home}/vault/ssh/nxgit-nx2-${hyper.host}" - "${hyper.home}/vault/ssh/github-noggynoggy-${hyper.host}" - ]; - }; + "*".identityFile = [ + "${hyper.home}/vault/ssh/nxgit-nx2-${hyper.host}" + "${hyper.home}/vault/ssh/github-noggynoggy-${hyper.host}" + ]; + "github.com".identityFile = [ "${hyper.home}/vault/ssh/github-noggynoggy-${hyper.host}" ]; "nxace" = nxace "nxace"; "nxacel" = (nxace "nxacel") // { hostname = "10.0.1.1"; }; "nxrpli" = (nxace "nxrpil") // { hostname = "10.0.1.31"; port = 22; };