1

Modules/SSH: Add keys to ssh-agent on nix-darwin

This commit is contained in:
2026-03-27 01:31:21 +01:00
parent ec7247bc77
commit 592e7e4bb9

View File

@ -18,7 +18,10 @@ in {
matchBlocks = {
"*" = {
forwardAgent = false;
addKeysToAgent = "no";
addKeysToAgent =
if pkgs.stdenv.isLinux
then "no"
else "yes"; # Don't have keychain on darwin
compression = true;
serverAliveInterval = 0;
serverAliveCountMax = 3;