flake/home/applications/thunderbird/default.nix

17 lines
494 B
Nix
Raw Normal View History

2024-01-07 15:45:20 +00:00
{pkgs, ...}: {
programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
extraConfig = ''
${builtins.readFile (pkgs.fetchurl {
2024-06-18 00:59:05 +00:00
# FIXME: IFD
2024-01-07 15:45:20 +00:00
url = "https://raw.githubusercontent.com/HorlogeSkynet/thunderbird-user.js/d6b18302e46349d9924c8a76951bae6efca51501/user.js";
hash = "sha256-66B1yLQkQnydAUXD7KGt32OhWSYcdWX+BUozrgW9uAg=";
})}
${builtins.readFile ./user-overrides.js}
'';
};
};
}