Nitrokey: Difference between revisions
Appearance
m adjust translate tag |
Marked this version for translation |
||
| Line 4: | Line 4: | ||
This article describes how you can use your [[Wikipedia:Nitrokey|Nitrokey]] with NixOS | This article describes how you can use your [[Wikipedia:Nitrokey|Nitrokey]] with NixOS | ||
<!--T:2--> | ==Installation== <!--T:2--> | ||
<!--T:3--> | |||
You also want to add the nitrokey udev rules and enable the gpg agent | You also want to add the nitrokey udev rules and enable the gpg agent | ||
</translate> | </translate> | ||
| Line 22: | Line 22: | ||
<translate> | <translate> | ||
<!--T:4--> | |||
[[Category:Hardware]] | [[Category:Hardware]] | ||
</translate> | </translate> | ||
Latest revision as of 04:43, 7 November 2025
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;
};
};