flake/home/applications/thunderbird/default.nix

18 lines
467 B
Nix
Raw Normal View History

{
2024-01-07 23:45:20 +08:00
programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
extraConfig = ''
${builtins.readFile (
builtins.fetchurl {
2025-01-24 09:20:37 +08:00
url = "https://raw.githubusercontent.com/HorlogeSkynet/thunderbird-user.js/refs/tags/v128.0/user.js";
sha256 = "129d22m4ls40njcil2wsjmv8xszpvhpr4bgx2wdnx8vndrq16msp";
}
)}
2024-01-07 23:45:20 +08:00
${builtins.readFile ./user-overrides.js}
'';
};
};
}