mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
12 lines
235 B
Nix
12 lines
235 B
Nix
{
|
|
services.ssh-agent = {
|
|
enable = true;
|
|
socket = "ssh-agent/socket";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/ssh-agent.service \
|
|
${./basic-service-expected.service}
|
|
'';
|
|
}
|