Nitrokey

From NixOS Wiki
Revision as of 10:26, 4 May 2024 by Klinger (talk | contribs) (Category:Hardware)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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