summaryrefslogtreecommitdiff
path: root/system/hardware.nix
blob: 853a6cc527e682e4b3d32366ce8936319512cbdb (plain)
1
2
3
4
5
6
7
8
9
{pkgs, ...}: {
  # yubikey support
  services = {
    pcscd.enable = true;
    udev.packages = with pkgs; [
      yubikey-personalization
    ];
  };
}