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;