nixos/gnupg: actually use the configured gpg package
Previously, this would ignore the `package` option if `pinentryFlavor` was set.
This commit is contained in:
parent
402b97fa1e
commit
bfe1c69ede
|
@ -96,7 +96,7 @@ in
|
||||||
# This overrides the systemd user unit shipped with the gnupg package
|
# This overrides the systemd user unit shipped with the gnupg package
|
||||||
systemd.user.services.gpg-agent = mkIf (cfg.agent.pinentryFlavor != null) {
|
systemd.user.services.gpg-agent = mkIf (cfg.agent.pinentryFlavor != null) {
|
||||||
serviceConfig.ExecStart = [ "" ''
|
serviceConfig.ExecStart = [ "" ''
|
||||||
${pkgs.gnupg}/bin/gpg-agent --supervised \
|
${cfg.package}/bin/gpg-agent --supervised \
|
||||||
--pinentry-program ${pkgs.pinentry.${cfg.agent.pinentryFlavor}}/bin/pinentry
|
--pinentry-program ${pkgs.pinentry.${cfg.agent.pinentryFlavor}}/bin/pinentry
|
||||||
'' ];
|
'' ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user