nix-config/hosts/wodan/yubikey-gpg.nix
Lander Van den Bulcke 6e2b303f8e
maint: move nixos config to hosts dir
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2024-08-27 22:28:06 +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
];
}