mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-12 20:11:06 +01:00
Add option to ssh-agent to add a default value for the maximum lifetime of identities added to the agent.
9 lines
183 B
Nix
9 lines
183 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
ssh-agent-basic-service = ./basic-service.nix;
|
|
ssh-agent-timeout-service = ./timeout-service.nix;
|
|
}
|