mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
46a69810cb
Rationale: As of release 1.1.2[1], the configuration ini file supports declaration of the `[main]` header as an alternative to global properties by enumerating all sections and mapping each to the respective parsing function. Global properties will still be parsed correctly by fnott however generation adds unnecessary complexity to the module. This commit removes the need for global properties generation. Changes: - Fixed the FIXME at L118. - Cleaned up unneeded let bindings. - Changed the generation method to use the `pkgs.formats.ini` from pkgs-lib instead of the raw `generators` library. This was done for consistency and clarity as the `pkgs.formats.ini` is still required for type declaration and uses `generators` internally. - Removed `global-properties` testcase. - Updated `example-settings` testcase. [1] - https://codeberg.org/dnkl/fnott/releases/tag/1.1.2
7 lines
106 B
INI
7 lines
106 B
INI
[low]
|
|
timeout=5
|
|
title-color=ffffff
|
|
title-font=Dina:weight=bold:slant=italic
|
|
|
|
[main]
|
|
notification-margin=5
|