mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
17 lines
315 B
Nix
17 lines
315 B
Nix
{
|
|
services.ssh-agent = {
|
|
enable = true;
|
|
pkcs11Whitelist = [
|
|
"/nix/store/*/lib"
|
|
"/usr/lib/libpkcs11.so"
|
|
"/usr/lib/other.so"
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/ssh-agent.service \
|
|
${./pkcs11-service-expected.service}
|
|
'';
|
|
}
|