Nitrokey: Difference between revisions
Marked this version for translation |
No edit summary |
||
Line 1: | Line 1: | ||
<languages/> | |||
<translate> | <translate> | ||
<!--T:1--> | <!--T:1--> |
Latest revision as of 13:47, 12 July 2024
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;
};
};