mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-07 17:41:03 +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
16 lines
470 B
Nix
16 lines
470 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
time = "2024-09-20T07:00:11+00:00";
|
|
condition = config.programs.kitty.theme != null;
|
|
message = ''
|
|
|
|
The option 'programs.kitty.theme' has been deprecated, please use
|
|
'programs.kitty.themeFile' instead.
|
|
|
|
The 'programs.kitty.themeFile' option expects the file name of a
|
|
theme from `kitty-themes`, without the `.conf` suffix. See
|
|
<https://github.com/kovidgoyal/kitty-themes/tree/master/themes> for a
|
|
list of themes.
|
|
'';
|
|
}
|