My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/configuration/workstation/yubikey/default.nix

15 lines
430 B

{ 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 ];
}