7 lines
99 B
Nix
7 lines
99 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.pcscd = {
|
|
enable = true;
|
|
plugins = with pkgs; [ ccid ];
|
|
};
|
|
}
|