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
25 lines
618 B
Nix
25 lines
618 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
time = "2022-10-22T17:52:30+00:00";
|
|
condition = config.programs.firefox.enable;
|
|
message = ''
|
|
|
|
It is now possible to configure the default search engine in Firefox
|
|
with
|
|
|
|
programs.firefox.profiles.<name>.search.default
|
|
|
|
and add custom engines with
|
|
|
|
programs.firefox.profiles.<name>.search.engines.
|
|
|
|
It is also recommended to set
|
|
|
|
programs.firefox.profiles.<name>.search.force = true
|
|
|
|
since Firefox will replace the symlink for the search configuration on
|
|
every launch, but note that you'll lose any existing configuration by
|
|
enabling this.
|
|
'';
|
|
}
|