From 24029ce1cdb105258fca9d2ae46251a4cd306a29 Mon Sep 17 00:00:00 2001 From: alyx Date: Sun, 29 Jun 2025 11:56:36 +0100 Subject: [PATCH] add gnupg to my main rig, absolution, when i can be bothered this will be added on other systems too --- base/absolution/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/base/absolution/configuration.nix b/base/absolution/configuration.nix index 8be5401..ec68da5 100644 --- a/base/absolution/configuration.nix +++ b/base/absolution/configuration.nix @@ -17,6 +17,17 @@ #services.udev.extraRules = builtins.readFile ./udev.rules; services.gnome.gnome-keyring.enable = true; security.pam.services.greetd.enableGnomeKeyring = true; + security.pam.services.greetd.gnupg.enable = true; + + security.pam.services.login = { + enableGnomeKeyring = true; + gnupg.enable = true; + }; + + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; hardware.wooting.enable = true; hardware.openrazer.enable = true;