updated flake lock

This commit is contained in:
Leyla Becker 2025-09-02 23:05:27 -05:00
parent 6e0650f73b
commit d89d085409
4 changed files with 33 additions and 22 deletions

View file

@ -45,8 +45,13 @@
services.ssh-agent.enable = true;
programs.ssh = {
enable = true;
compression = true;
addKeysToAgent = "confirm";
enableDefaultConfig = false;
matchBlocks = {
"*" = {
compression = true;
addKeysToAgent = "confirm";
};
};
extraConfig = lib.strings.concatLines (
builtins.map (hostKey: "IdentityFile ~/.ssh/${hostKey.path}") config.programs.openssh.hostKeys
);