Jump to content

Nitrokey/zh: Difference between revisions

From NixOS Wiki
Ardenet (talk | contribs)
Created page with "本文介绍了如何将 Nitrokey 与 NixOS 一起使用"
 
(No difference)

Latest revision as of 11:02, 8 October 2025

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