Nitrokey/en: Difference between revisions
Appearance
Updating to match new version of source page |
Updating to match new version of source page |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
This article describes how you can use your | <languages/> | ||
This article describes how you can use your [[Wikipedia:Nitrokey|Nitrokey]] with NixOS | |||
==Installation== | ==Installation== | ||
Latest revision as of 22:41, 7 October 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;
};
};