Jump to content

Nitrokey

From Official NixOS Wiki
Revision as of 04:43, 7 November 2025 by Ardenet (talk | contribs) (Marked this version for translation)

This article describes how you can use your Nitrokey with 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;
  };
};