flake/home/applications/thunderbird/default.nix

17 lines
514 B
Nix
Raw Normal View History

2024-07-26 06:07:28 +00:00
{pkgs, ...}: {
2024-01-07 15:45:20 +00:00
programs.thunderbird = {
enable = true;
2024-07-26 06:07:28 +00:00
package = pkgs.thunderbird-128;
2024-01-07 15:45:20 +00:00
profiles.default = {
isDefault = true;
extraConfig = ''
2024-06-23 14:55:42 +00:00
${builtins.readFile (builtins.fetchurl {
2024-07-26 05:59:35 +00:00
url = "https://raw.githubusercontent.com/HorlogeSkynet/thunderbird-user.js/824edabe6303d6b85a32fcba96901706ed4c5922/user.js";
sha256 = "0jg7i39yp21r66azlzk7978qj57rgb8c09d1hccpcw058isgymq6";
2024-01-07 15:45:20 +00:00
})}
${builtins.readFile ./user-overrides.js}
'';
};
};
}