From 34bd44975ac3fa32689713e1fb6188aed3e1a52e Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Wed, 10 Jan 2024 22:06:38 +0100 Subject: [PATCH] [Services/GnuPG] fix for 23.11 compat --- services/gnupg.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/gnupg.nix b/services/gnupg.nix index 18a0a33..6fc8adf 100644 --- a/services/gnupg.nix +++ b/services/gnupg.nix @@ -37,7 +37,7 @@ in { restartTriggers = [ pinentrySwitcher ]; restartIfChanged = true; - serviceConfig.ExecStart = [ "" '' + serviceConfig.ExecStart = mkOverride 30 [ "" '' ${cfg.package}/bin/gpg-agent --supervised \ --pinentry-program ${pinentrySwitcher}/bin/pinentry '' ];