fix(hosts): ssh agent add keys

This commit is contained in:
2025-10-23 23:38:08 +01:00
parent 073aba7ebe
commit d82a70eba2
2 changed files with 15 additions and 2 deletions

View File

@@ -106,7 +106,13 @@
programs = {
home-manager.enable = true;
ssh = {
matchBlocks."*".addKeysToAgent = "yes";
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*" = {
addKeysToAgent = "yes";
};
};
};
};
}