Nitrokey

Revision as of 04:43, 7 November 2025 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

本文介绍了如何将 Nitrokey 与 NixOS 一起使用

Installation

You also want to add the nitrokey udev rules and enable the gpg agent

services.udev.packages = [ pkgs.nitrokey-udev-rules ];
programs = {
  ssh.startAgent = false;
  gnupg.agent = {
    enable = true;
    enableSSHSupport = true;
  };
};