nix-config/nixos/yubikey-gpg.nix
Lander Van den Bulcke e887d8bc7d
initial commit
2024-08-27 16:06:02 +02:00

18 lines
320 B
Nix

{ config, lib, pkgs, ... }:
{
programs.ssh.startAgent = false;
services.pcscd.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.gnome.gnome-keyring.enable = lib.mkForce false;
environment.systemPackages = with pkgs; [
yubikey-personalization
];
}