From 9962e0181f53cc5c18d9180b9359dd7c411ccdef Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 10 Jul 2025 11:25:45 +0200 Subject: [PATCH] Use openpgp keyserver --- modules/home/gpg.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/home/gpg.nix b/modules/home/gpg.nix index 57d5cd1..5c75d91 100644 --- a/modules/home/gpg.nix +++ b/modules/home/gpg.nix @@ -1,5 +1,10 @@ {pkgs, ...}: { - programs.gpg.enable = true; + programs.gpg = { + enable = true; + settings = { + keyserver = "hkps://keys.openpgp.org"; + }; + }; services.gpg-agent = { enable = true; enableSshSupport = true;