aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration/workstation/yubikey/default.nix
blob: f139e3395e06be8c4d70fdfb55fe77e862e73509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:

with pkgs;
{
  services.udev.packages = [ yubikey-personalization ];

  # Sometimes this is needed, so we keep it here
  # services.pcscd.enable = true;
  
  # FIXME: Can I remove these?
  # Previously these rules were required to make
  # Yubikey support work on `uwu`, but maybe this
  # is redundant with special udev rules?
  environment.systemPackages = [ yubikey-manager yubikey-personalization ];
}