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
13 lines
405 B
Nix
13 lines
405 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
time = "2021-09-23T17:04:48+00:00";
|
|
condition = pkgs.stdenv.hostPlatform.isLinux && config.services.screen-locker.enable;
|
|
message = ''
|
|
|
|
'xautolock' is now optional in 'services.screen-locker', and the
|
|
'services.screen-locker' options have been reorganized for clarity.
|
|
See the 'xautolock' and 'xss-lock' options modules in
|
|
'services.screen-locker'.
|
|
'';
|
|
}
|