1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00

gpg-agent: don't set a default for pinentry

NixOS stopped building gtk2 pinentry by default in
https://github.com/NixOS/nixpkgs/pull/270266 and there does not appear
to be a reasonable other default.
This commit is contained in:
Sandro 2023-12-24 03:27:45 +01:00 committed by Mikilio
parent d5f201ca6c
commit 11f904ea29
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

@ -198,7 +198,7 @@ in {
pinentryFlavor = mkOption { pinentryFlavor = mkOption {
type = types.nullOr (types.enum pkgs.pinentry.flavors); type = types.nullOr (types.enum pkgs.pinentry.flavors);
example = "gnome3"; example = "gnome3";
default = "gtk2"; default = null;
description = '' description = ''
Which pinentry interface to use. If not Which pinentry interface to use. If not
`null`, it sets `null`, it sets
@ -210,8 +210,6 @@ in {
```nix ```nix
services.dbus.packages = [ pkgs.gcr ]; services.dbus.packages = [ pkgs.gcr ];
``` ```
For this reason, the default is `gtk2` for
now.
''; '';
}; };