about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-06-18 22:55:44 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-01-14 18:03:31 +0100
commit6ecb73df1b45a5195167512e57b6bd915208b87e (patch)
tree4c7576d5f794e0415eb45f77b3f47d63979e98ed /nixos
parentc09acaa9056975a9a5b52be1703e543151283a91 (diff)
nixos/pcscd: suggest yubikey-personalization for additional udev rules
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/pcscd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/hardware/pcscd.nix b/nixos/modules/services/hardware/pcscd.nix
index 0935f966110a8..0d4cfc4879c84 100644
--- a/nixos/modules/services/hardware/pcscd.nix
+++ b/nixos/modules/services/hardware/pcscd.nix
@@ -22,7 +22,7 @@ in
     plugins = mkOption {
       type = types.listOf types.package;
       defaultText = literalExpression "[ pkgs.ccid ]";
-      example = literalExpression "[ pkgs.pcsc-cyberjack ]";
+      example = literalExpression "with pkgs; [ pcsc-cyberjack yubikey-personalization ]";
       description = lib.mdDoc "Plugin packages to be used for PCSC-Lite.";
     };