From 78975da97023ddc22d37724a0ef5e51987a7086b Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Mon, 13 Oct 2025 14:38:06 +0200 Subject: [PATCH] ssh * identities --- home-modules/ssh.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home-modules/ssh.nix b/home-modules/ssh.nix index 6568481..87b4d1d 100644 --- a/home-modules/ssh.nix +++ b/home-modules/ssh.nix @@ -13,6 +13,12 @@ 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}" + ]; + }; "nxace" = nxace "nxace"; "nxacel" = (nxace "nxacel") // { hostname = "10.0.1.1"; }; "nxrpli" = (nxace "nxrpil") // { hostname = "10.0.1.31"; port = 22; };