[wezterm] Uses the system SSH-agent over the built-in one.

This commit is contained in:
2025-03-17 11:39:32 -07:00
parent 54e6a63ab7
commit 3f12e44e34
2 changed files with 15 additions and 0 deletions

View File

@@ -1,5 +1,17 @@
{ ... }:
{
programs.ssh = {
enable = true;
# Automatically add keys to agent when used
# Other options are "no" and "confirm"
addKeysToAgent = "yes";
matchBlocks = {
"mcp.haven" = {
user = "drew";
};
};
};
services.ssh-agent.enable = true;
}