mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01: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:
parent
d5f201ca6c
commit
11f904ea29
1 changed files with 1 additions and 3 deletions
|
@ -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.
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue