nix-conf/system/modules/card-reader.nix
2026-01-24 15:10:26 +08:00

7 lines
99 B
Nix

{ pkgs, ... }:
{
services.pcscd = {
enable = true;
plugins = with pkgs; [ ccid ];
};
}