nixos/physical: add yubikey

This commit is contained in:
Guanran Wang 2024-03-06 05:08:53 +08:00
parent 7019f82151
commit a963d7fc39
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -1,6 +1,9 @@
{ {pkgs, ...}: {
networking.stevenblack.enable = true; networking.stevenblack.enable = true;
services.system76-scheduler.enable = true; services.system76-scheduler.enable = true;
services.power-profiles-daemon.enable = true; services.power-profiles-daemon.enable = true;
services.thermald.enable = true; services.thermald.enable = true;
# YubiKey
services.udev.packages = [pkgs.yubikey-personalization];
} }