Nitrokey

From NixOS Wiki
Revision as of 13:48, 12 July 2024 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

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

Installation

Vous devez également ajouter la règle udev pour Nitrokey et activer l'agent GPG.

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