Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion application.nix
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,13 @@ rec {
playos.controller.annotateDiscoveredServices = [ "_sensoControl._tcp" "_sensoUpdate._udp" ];

# Enable pcscd for smart card identification
services.pcscd.enable = true;
services.pcscd = {
enable = true;

# Support newer ACS readers (ACS-maintained; https://github.com/acshk/acsccid)
plugins = [ pkgs.acsccid ];
};

# Allow play user to access pcsc
security.polkit.extraConfig = ''
polkit.addRule(function(action, subject) {
Expand Down
Loading