Jump to content

Nitrokey/zh

From NixOS Wiki
This page is a translated version of the page Nitrokey and the translation is 33% complete.

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