aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/hardware/yubikey/default.nix
blob: 851f9acea3965d24f32b99ea6d540637d551b456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  services.udev.packages = with pkgs; [ yubikey-personalization ];
  
  # 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 = with pkgs; [
    yubikey-manager
    yubikey-personalization
  ];
}