lol

nixos/yubikey-agent: Add dependency to pcsd.service

Issue: after installing, running `yubikey-agent -setup` produces the
following error:
```
nixOS: Failed to connect to the YubiKey: connecting to pscs: the Smart
card resource manager is not running
```

More on this issue: https://github.com/FiloSottile/yubikey-agent/issues/137

authored by

Marin and committed by
Marin
785cd824 9ee0410a

+3
+3
nixos/modules/services/security/yubikey-agent.nix
··· 57 57 ]; 58 58 }; 59 59 60 + # Yubikey-agent expects pcsd to be running in order to function. 61 + services.pcscd.enable = true; 62 + 60 63 environment.extraInit = '' 61 64 if [ -z "$SSH_AUTH_SOCK" -a -n "$XDG_RUNTIME_DIR" ]; then 62 65 export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/yubikey-agent/yubikey-agent.sock"