From 3b1c16060430883a7c14f47116b2ff8e3d9ffbe5 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Fri, 6 Jan 2023 17:01:57 -0800 Subject: [PATCH] Get yubikeys working --- README.md | 1 - hosts/desktop.nix | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c886df..e212311 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ - Make rofi power menu work by removing password requirement from shutdown, reboot, etc., which is normally done with `visudo` (see [this Stack Overflow thread](https://askubuntu.com/a/168885) and [Nix `sudo` option](https://search.nixos.org/options?channel=22.05&from=0&size=50&sort=relevance&type=packages&query=sudo). - Theme GRUB - Load in vim configuration -- Install and setup service for yubioath-desktop - Install Anthy IME for Japanese input - Fix issue where wireless connection dies after suspend, even after restarting NetworkManager - Fix screenshots diff --git a/hosts/desktop.nix b/hosts/desktop.nix index 9b14934..af55803 100644 --- a/hosts/desktop.nix +++ b/hosts/desktop.nix @@ -27,8 +27,12 @@ package = pkgs.i3-gaps; }; }; + udev.packages = [ pkgs.yubikey-personalization ]; + pcscd.enable = true; }; + environment.systemPackages = with pkgs; [ yubioath-flutter ]; + # Enable OpenTabletDriver, GUI configurator is otd-gui hardware.opentabletdriver.enable = true;