🚀 enable ssh support for yubikey

This commit is contained in:
Moritz Böhme 2022-04-20 17:38:49 +02:00
parent fcc03ca88c
commit 64891e10cb
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 9 additions and 3 deletions

View file

@ -1,10 +1,11 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
services.gpg-agent = {
programs = {
ssh.startAgent = false;
gnupg.agent = {
enable = true;
defaultCacheTtl = 3600;
enableSSHSupport = true;
};
};
services.pcscd.enable = true;