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

@ -20,7 +20,6 @@
# and manually installed ghost-text for atomic-chrome
#];
profiles.ccr = {
id = 0; # implies isDefault = true
settings = {
"browser.startup.homepage" = "https://google.it";
"browser.search.region" = "IT";
@ -29,7 +28,8 @@
"general.useragent.locale" = "it-IT";
"browser.bookmarks.showMobileBookmarks" = true;
"browser.download.folderList" = 2;
"browser.download.lastDir" = "~/downloads/";
"browser.download.lastDir" = "/home/ccr/downloads/";
"browser.shell.checkDefaultBrowser" = false;
};
userChrome = ''
/* Hide tab bar in FF Quantum * /

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 = {};
};
}