flake/home/applications/thunderbird/default.nix

16 lines
477 B
Nix
Raw Normal View History

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