mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
Add option to ssh-agent to add a default value for the maximum lifetime of identities added to the agent.
10 lines
183 B
Nix
10 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;
|
|
}
|