Jump to content

Nitrokey/ru: Difference between revisions

From NixOS Wiki
Unabomberlive (talk | contribs)
Created page with "==Установка== Вам также нужно добавить правила nitrokey udev и включить gpg-агент <syntaxHighlight lang=nix> services.udev.packages = [ pkgs.nitrokey-udev-rules ]; programs = { ssh.startAgent = false; gnupg.agent = { enable = true; enableSSHSupport = true; }; }; </syntaxHighlight> Category:Hardware"
FuzzyBot (talk | contribs)
Updating to match new version of source page
 
Line 1: Line 1:
<languages/>
<languages/>
<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">
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 [[Wikipedia:Nitrokey|Nitrokey]] with NixOS
</div>
</div>



Latest revision as of 22:41, 7 October 2025

This article describes how you can use your Nitrokey with NixOS

Установка

Вам также нужно добавить правила nitrokey udev и включить gpg-агент

services.udev.packages = [ pkgs.nitrokey-udev-rules ];
programs = {
  ssh.startAgent = false;
  gnupg.agent = {
    enable = true;
    enableSSHSupport = true;
  };
};