mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 15:41:02 +01:00
15 lines
337 B
Nix
15 lines
337 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.ssh-agent = {
|
|
enable = true;
|
|
defaultMaximumIdentityLifetime = 1337;
|
|
package = config.lib.test.mkStubPackage { outPath = "@openssh@"; };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
LaunchAgents/org.nix-community.home.ssh-agent.plist \
|
|
${./timeout-service-expected.plist}
|
|
'';
|
|
}
|