Nitrokey: Difference between revisions
imported>Neutrocyte Created page with "This article describes how you can use your [https://www.nitrokey.com Nitrokey] Nitrokey with NixOS ==Installation== Either install the Nitrokey-app Ad..." |
Marked this version for translation |
||
| (8 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
This article describes how you can use your | <languages/> | ||
<translate> | |||
<!--T:1--> | |||
This article describes how you can use your [[Wikipedia:Nitrokey|Nitrokey]] with NixOS | |||
==Installation== <!--T:2--> | |||
<!--T:3--> | |||
You also want to add the nitrokey udev rules and enable the gpg agent | |||
</translate> | |||
<syntaxHighlight lang=nix> | <syntaxHighlight lang=nix> | ||
services.udev.packages = [ pkgs.nitrokey-udev-rules ]; | services.udev.packages = [ pkgs.nitrokey-udev-rules ]; | ||
programs = { | |||
ssh.startAgent = false; | |||
gnupg.agent = { | |||
enable = true; | |||
enableSSHSupport = true; | |||
}; | |||
}; | |||
</syntaxHighlight> | </syntaxHighlight> | ||
<translate> | |||
<!--T:4--> | |||
[[Category:Hardware]] | |||
</translate> | |||