mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Move all inlined news entries from news.nix into separate files organized by year and month. This makes the news system more maintainable and easier to navigate. - Extract 202 inlined entries to individual files in YYYY/MM directory structure - Update news.nix to only contain the module definition - Use recursive directory traversal to find all news entries
22 lines
723 B
Nix
22 lines
723 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
time = "2022-11-13T09:05:51+00:00";
|
|
condition = pkgs.stdenv.hostPlatform.isDarwin;
|
|
message = ''
|
|
|
|
A new module is available: 'programs.thunderbird'.
|
|
|
|
Please note that the Thunderbird packages provided by Nix are
|
|
currently not working on macOS. The module can still be used to manage
|
|
configuration files by installing Thunderbird manually and setting the
|
|
'programs.thunderbird.package' option to a dummy package, for example
|
|
using 'pkgs.runCommand'.
|
|
|
|
This module requires you to set the following environment variables
|
|
when using an installation of Thunderbird that is not provided by Nix:
|
|
|
|
export MOZ_LEGACY_PROFILES=1
|
|
export MOZ_ALLOW_DOWNGRADE=1
|
|
'';
|
|
}
|