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