Jump to content

Nitrokey/zh

From NixOS Wiki
Revision as of 11:02, 8 October 2025 by Ardenet (talk | contribs) (Created page with "本文介绍了如何将 Nitrokey 与 NixOS 一起使用")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

本文介绍了如何将 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;
  };
};