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
21 lines
681 B
Nix
21 lines
681 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
time = "2021-06-16T01:26:16+00:00";
|
|
condition = pkgs.stdenv.hostPlatform.isLinux;
|
|
message = ''
|
|
|
|
The xmonad module now compiles the configuration before
|
|
linking the binary to the place xmonad expects to find
|
|
the compiled configuration (the binary).
|
|
|
|
This breaks recompilation of xmonad (i.e. the 'q' binding or
|
|
'xmonad --recompile').
|
|
|
|
If this behavior is undesirable, do not use the
|
|
'xsession.windowManager.xmonad.config' option. Instead, set the
|
|
contents of the configuration file with
|
|
'home.file.".xmonad/config.hs".text = "content of the file"'
|
|
or 'home.file.".xmonad/config.hs".source = ./path-to-config'.
|
|
'';
|
|
}
|