mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
16 lines
254 B
Nix
16 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}
|
|
'';
|
|
};
|
|
}
|