Added pinentry-gtk and stopped firefox to ask to become the default browser

This commit is contained in:
Andrea Ciceri 2021-10-01 01:16:07 +02:00
parent b6448b55ec
commit eaa919a23a
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
2 changed files with 7 additions and 3 deletions

View file

@ -1,12 +1,16 @@
{ pkgs, ... }:
{
services.gpg-agent = {
enable = true;
enableSshSupport = true;
sshKeys = [ "CE2FD0D9BECBD8876811714925066CC257413416" ];
extraConfig = ''
pinentry-program ${pkgs.pinentry-gtk2}/bin/pinentry-gtk-2
'';
};
programs.gpg = {
enable = true;
settings = { };
settings = {};
};
}