summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-07-17 10:04:59 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-07-17 10:04:59 +0200
commit1ae2f10642ea00a423354dd3176c55e47dbf3f6e (patch)
tree7f94ddd06e808ad8fafd657badc27ec1d82d354b /nixos
parentbac995cd9f07f526d66b571331cd17b8eb7c0f62 (diff)
parent9d0336a2bbe933c1a8e6ea7c7b39eb7ff071ef66 (diff)
downloadnixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.tar
nixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.tar.gz
nixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.tar.bz2
nixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.tar.lz
nixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.tar.xz
nixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.tar.zst
nixlib-1ae2f10642ea00a423354dd3176c55e47dbf3f6e.zip
Merge staging-next into master
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/pcscd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/hardware/pcscd.nix b/nixos/modules/services/hardware/pcscd.nix
index fa97e8bf746b..f3fc4c3cc79e 100644
--- a/nixos/modules/services/hardware/pcscd.nix
+++ b/nixos/modules/services/hardware/pcscd.nix
@@ -61,8 +61,8 @@ in {
       description = "PCSC-Lite daemon";
       environment.PCSCLITE_HP_DROPDIR = pluginEnv;
       serviceConfig = {
-        ExecStart = "${pkgs.pcsclite}/sbin/pcscd -f -x -c ${cfgFile}";
-        ExecReload = "${pkgs.pcsclite}/sbin/pcscd -H";
+        ExecStart = "${getBin pkgs.pcsclite}/sbin/pcscd -f -x -c ${cfgFile}";
+        ExecReload = "${getBin pkgs.pcsclite}/sbin/pcscd -H";
       };
     };
   };