mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08: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:
@@ -198,7 +198,7 @@ in {
|
||||
pinentryFlavor = mkOption {
|
||||
type = types.nullOr (types.enum pkgs.pinentry.flavors);
|
||||
example = "gnome3";
|
||||
default = "gtk2";
|
||||
default = null;
|
||||
description = ''
|
||||
Which pinentry interface to use. If not
|
||||
`null`, it sets
|
||||
@@ -210,8 +210,6 @@ in {
|
||||
```nix
|
||||
services.dbus.packages = [ pkgs.gcr ];
|
||||
```
|
||||
For this reason, the default is `gtk2` for
|
||||
now.
|
||||
'';
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user