From 4972e696285833ed542eaab1034218bf5e8b7232 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 16 Jun 2021 00:38:52 +0200 Subject: modules/gnupg: Replace pinentry_* with pinentry-* The pinentry_* variants are all aliases and the actual packages are separated with a dash instead. Since NixOS VM tests no longer allow aliases, we need to use the real package name instead to avoid evaluation errors. Signed-off-by: aszlig --- modules/programs/gnupg/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/programs') diff --git a/modules/programs/gnupg/default.nix b/modules/programs/gnupg/default.nix index 7d76b79f..7ac9d487 100644 --- a/modules/programs/gnupg/default.nix +++ b/modules/programs/gnupg/default.nix @@ -90,9 +90,9 @@ in { pinentry.program = mkOption { type = types.path; - default = "${pkgs.pinentry_gtk2}/bin/pinentry"; - defaultText = "\${pkgs.pinentry_gtk2}/bin/pinentry"; - example = lib.literalExample "\${pkgs.pinentry_qt}/bin/pinentry"; + default = "${pkgs.pinentry-gtk2}/bin/pinentry"; + defaultText = "\${pkgs.pinentry-gtk2}/bin/pinentry"; + example = lib.literalExample "\${pkgs.pinentry-qt}/bin/pinentry"; description = "The pinentry program to use to ask for passphrases."; }; -- cgit 1.4.1