Nitrokey: Difference between revisions
m →Installation: typo Tags: Mobile edit Mobile web edit |
No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<languages/> | |||
<translate> | |||
<!--T:1--> | |||
This article describes how you can use your [https://www.nitrokey.com Nitrokey] [[Wikipedia:Nitrokey|Nitrokey]] with NixOS | This article describes how you can use your [https://www.nitrokey.com Nitrokey] [[Wikipedia:Nitrokey|Nitrokey]] with NixOS | ||
<!--T:2--> | |||
==Installation== | ==Installation== | ||
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 | ||
Line 13: | Line 17: | ||
}; | }; | ||
</syntaxHighlight> | </syntaxHighlight> | ||
[[Category:Hardware]] | |||
</translate> |
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;
};
};