15 lines
254 B
Nix
15 lines
254 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.ssh-agent = {
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/ssh-agent.service \
|
|
${./basic-service-expected.service}
|
|
'';
|
|
};
|
|
}
|