python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / hardware / pcscd.nix
bloba09c64645c4858a95d2e9442cee27139370a89b6
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfgFile = pkgs.writeText "reader.conf" config.services.pcscd.readerConfig;
8   package = if config.security.polkit.enable
9               then pkgs.pcscliteWithPolkit
10               else pkgs.pcsclite;
12   pluginEnv = pkgs.buildEnv {
13     name = "pcscd-plugins";
14     paths = map (p: "${p}/pcsc/drivers") config.services.pcscd.plugins;
15   };
20   ###### interface
22   options.services.pcscd = {
23     enable = mkEnableOption (lib.mdDoc "PCSC-Lite daemon");
25     plugins = mkOption {
26       type = types.listOf types.package;
27       default = [ pkgs.ccid ];
28       defaultText = literalExpression "[ pkgs.ccid ]";
29       example = literalExpression "[ pkgs.pcsc-cyberjack ]";
30       description = lib.mdDoc "Plugin packages to be used for PCSC-Lite.";
31     };
33     readerConfig = mkOption {
34       type = types.lines;
35       default = "";
36       example = ''
37         FRIENDLYNAME      "Some serial reader"
38         DEVICENAME        /dev/ttyS0
39         LIBPATH           /path/to/serial_reader.so
40         CHANNELID         1
41       '';
42       description = lib.mdDoc ''
43         Configuration for devices that aren't hotpluggable.
45         See {manpage}`reader.conf(5)` for valid options.
46       '';
47     };
48   };
50   ###### implementation
52   config = mkIf config.services.pcscd.enable {
54     environment.etc."reader.conf".source = cfgFile;
56     environment.systemPackages = [ package ];
57     systemd.packages = [ (getBin package) ];
59     systemd.sockets.pcscd.wantedBy = [ "sockets.target" ];
61     systemd.services.pcscd = {
62       environment.PCSCLITE_HP_DROPDIR = pluginEnv;
63       restartTriggers = [ "/etc/reader.conf" ];
65       # If the cfgFile is empty and not specified (in which case the default
66       # /etc/reader.conf is assumed), pcscd will happily start going through the
67       # entire confdir (/etc in our case) looking for a config file and try to
68       # parse everything it finds. Doesn't take a lot of imagination to see how
69       # well that works. It really shouldn't do that to begin with, but to work
70       # around it, we force the path to the cfgFile.
71       #
72       # https://github.com/NixOS/nixpkgs/issues/121088
73       serviceConfig.ExecStart = [ "" "${getBin package}/bin/pcscd -f -x -c ${cfgFile}" ];
74     };
75   };