reNixos/s0mePC-nix/programs/ssh.nix
s0me1newithhand7s ee691228e0
treewide: ssh-agent timeout 30m -> 12h
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-06-17 15:53:33 +03:00

8 lines
127 B
Nix

{...}: {
programs = {
ssh = {
startAgent = true;
agentTimeout = "12h";
};
};
}