Nitrokey

From NixOS Wiki
Revision as of 22:24, 6 December 2021 by imported>Neutrocyte (Created page with "This article describes how you can use your [https://www.nitrokey.com Nitrokey] Nitrokey with NixOS ==Installation== Either install the Nitrokey-app Ad...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This article describes how you can use your Nitrokey Nitrokey with NixOS

Installation

Either install the Nitrokey-app Ad-hoc with

$ nix-env -iA nixos.nitrokey-app

or declarative by adding it to your configuration.nix. You also want to enable the udev rules and the PCSC-Lite daemon with

services.udev.packages = [ pkgs.nitrokey-udev-rules ];
services.pcscd.enable = true;