mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +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
602 B
Nix
16 lines
602 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
time = "2024-09-20T07:48:08+00:00";
|
|
condition = pkgs.stdenv.hostPlatform.isLinux && config.services.swayidle.enable;
|
|
message = ''
|
|
|
|
The swayidle module behavior has changed. Specifically, swayidle was
|
|
previously always called with a `-w` flag. This flag is now moved to
|
|
the default `services.swayidle.extraArgs` value to make it optional.
|
|
|
|
Your configuration may break if you already set this option and also
|
|
rely on the flag being automatically added. To resolve this, please
|
|
add `-w` to your assignment of `services.swayidle.extraArgs`.
|
|
'';
|
|
}
|