nix-config/hosts/common/optional/yubikey-gpg.nix
Lander Van den Bulcke 7230527d95
chore: reorganise common modules
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2024-08-28 10:49:48 +02:00

19 lines
341 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
yubioath-flutter
];
}