From 3d62cc10d33934eab994a8a7bb19dc678ac56ecf Mon Sep 17 00:00:00 2001 From: kiri Date: Thu, 4 Dec 2025 18:45:24 +0100 Subject: [PATCH] Add host for work github --- modules/home-manager/ssh.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/home-manager/ssh.nix b/modules/home-manager/ssh.nix index db5e3af..0925c36 100644 --- a/modules/home-manager/ssh.nix +++ b/modules/home-manager/ssh.nix @@ -4,6 +4,15 @@ enable = true; enableDefaultConfig = false; + matchBlocks = { + "github-work" = { + hostname = "github.com"; + user = "git"; + identityFile = "/home/kiri/.ssh/github-work.pub"; + identitiesOnly = true; + }; + }; + includes = [ config.sops.secrets.ssh_config_orion.path ];