home/{firefox,thunderbird}: remove ifd
This commit is contained in:
parent
f48525552d
commit
4055e7432a
2 changed files with 5 additions and 11 deletions
|
@ -3,17 +3,12 @@
|
|||
enable = true;
|
||||
profiles."default" = {
|
||||
extraConfig = ''
|
||||
${builtins.readFile (pkgs.fetchurl {
|
||||
# FIXME: IFD
|
||||
${builtins.readFile (builtins.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/arkenfox/user.js/126.1/user.js";
|
||||
hash = "sha256-XRtG0iLKh8uqbeX7Rc2H6VJwZYJoNZPBlAfZEfrSCP4=";
|
||||
sha256 = "sha256-XRtG0iLKh8uqbeX7Rc2H6VJwZYJoNZPBlAfZEfrSCP4=";
|
||||
})}
|
||||
${builtins.readFile ./user-overrides.js}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
MOZ_USE_XINPUT2 = "1";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
profiles.default = {
|
||||
isDefault = true;
|
||||
extraConfig = ''
|
||||
${builtins.readFile (pkgs.fetchurl {
|
||||
# FIXME: IFD
|
||||
${builtins.readFile (builtins.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/HorlogeSkynet/thunderbird-user.js/d6b18302e46349d9924c8a76951bae6efca51501/user.js";
|
||||
hash = "sha256-66B1yLQkQnydAUXD7KGt32OhWSYcdWX+BUozrgW9uAg=";
|
||||
sha256 = "sha256-66B1yLQkQnydAUXD7KGt32OhWSYcdWX+BUozrgW9uAg=";
|
||||
})}
|
||||
${builtins.readFile ./user-overrides.js}
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue