Nitrokey/zh
Appearance
本文介紹了如何將 Nitrokey 與 NixOS 一起使用
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;
};
};