From d56d26bf30359f889d974aee3da463094e8c04f6 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 11 Aug 2025 21:56:05 +0300 Subject: [PATCH] nixos/pcscd: fix eval --- nixos/modules/services/hardware/pcscd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/hardware/pcscd.nix b/nixos/modules/services/hardware/pcscd.nix index 451952070b72..10229c468740 100644 --- a/nixos/modules/services/hardware/pcscd.nix +++ b/nixos/modules/services/hardware/pcscd.nix @@ -112,7 +112,7 @@ in environment = { PCSCLITE_HP_DROPDIR = pluginEnv; - PCSCLITE_FILTER_IGNORE_READER_NAMES = lib.mkIf (cfg.ignoreReaderNames) ( + PCSCLITE_FILTER_IGNORE_READER_NAMES = lib.mkIf (cfg.ignoreReaderNames != [ ]) ( lib.concatStringsSep ":" cfg.ignoreReaderNames );