about summary refs log tree commit diff
path: root/modules/workstation/hardware
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-07-07 18:58:28 +0000
committerAlyssa Ross <hi@alyssa.is>2019-08-13 21:59:16 +0000
commit42691e8f5805457b9e4a1f04d9381fed316e96b2 (patch)
tree36a96a70c19764206dc704d967d22968a46516b0 /modules/workstation/hardware
parent4d4afdb420b71ab296be7e2d4b3d8109f2a27991 (diff)
downloadnixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.tar
nixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.tar.gz
nixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.tar.bz2
nixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.tar.lz
nixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.tar.xz
nixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.tar.zst
nixlib-42691e8f5805457b9e4a1f04d9381fed316e96b2.zip
modules/yubikey: remove pcscd
Turns out this works better without. With pcscd, after a reboot the
Yubikey won't be recognized until it's reinserted or pcscd is
restarted. It's probably a boot order thing, but removing it completely
works fine, so let's just do that.
Diffstat (limited to 'modules/workstation/hardware')
-rw-r--r--modules/workstation/hardware/yubikey/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/workstation/hardware/yubikey/default.nix b/modules/workstation/hardware/yubikey/default.nix
index 7f314bd5cbee..23a940f2ee8a 100644
--- a/modules/workstation/hardware/yubikey/default.nix
+++ b/modules/workstation/hardware/yubikey/default.nix
@@ -1,7 +1,5 @@
 { pkgs, ... }:
 
 {
-  services.pcscd.enable = true;
-
   services.udev.packages = with pkgs; [ yubikey-personalization ];
 }