nixos/pcscd: Correctly install pcsclite (fix #121121)

This makes sure that the polkit policies for pcsclite are correcly loaded.
This commit is contained in:
Thibault Polge 2021-04-30 10:21:43 +02:00
parent 2bd34a98af
commit 71d9291742
No known key found for this signature in database
GPG Key ID: 4078D570C200F14D

View File

@ -50,6 +50,7 @@ in
environment.etc."reader.conf".source = cfgFile;
environment.systemPackages = [ pkgs.pcsclite ];
systemd.packages = [ (getBin pkgs.pcsclite) ];
systemd.sockets.pcscd.wantedBy = [ "sockets.target" ];