Nitrokey: Difference between revisions
Appearance
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..." |
m remove unneeded link |
||
(6 intermediate revisions by 3 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 | |||
<!--T:2--> | |||
==Installation== | ==Installation== | ||
You also want to add the nitrokey udev rules and enable the gpg agent | |||
You also want to | |||
<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> | ||
[[Category:Hardware]] | |||
</translate> |
Latest revision as of 13:20, 21 May 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;
};
};