From d3dac79665678b1c85482c65ef01154d5b6ab613 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 26 Jan 2026 21:02:13 +0100 Subject: [PATCH] feat: adds `matchBlocks` for git hosts --- modules/home/ssh.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/home/ssh.nix diff --git a/modules/home/ssh.nix b/modules/home/ssh.nix new file mode 100644 index 0000000..f9b3df5 --- /dev/null +++ b/modules/home/ssh.nix @@ -0,0 +1,9 @@ +{ + programs.ssh = { + matchBlocks = { + "github.com gitlab.com" = { + user = "git"; + }; + }; + }; +}