From 4ac5527aca41ecb833c1b74c97d9571dba803cfd Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sun, 14 Jul 2024 20:40:20 +0200 Subject: [PATCH] Add gpg with yubikey --- modules/system/common.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/system/common.nix b/modules/system/common.nix index 2aa17ab..72c39a6 100644 --- a/modules/system/common.nix +++ b/modules/system/common.nix @@ -21,6 +21,14 @@ nixpkgs.config.allowUnfree = true; + services.udev.packages = [ pkgs.yubikey-personalization ]; + services.pcscd.enable = true; + + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ @@ -32,6 +40,8 @@ lldb gammaray # QT Inspector + yubikey-manager + # Usefull for automatic informations collect software like KDE vulkan-tools # For vulkaninfo command wayland-utils # For wayland-info command