treewide: declare options with lib.mkDefault
#388
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a suggestion to make use of
lib.mkDefault
to decrease the priority of the stylix options.I ran into the problem that I wanted to keep the Stylix target and only change a single option. One common example is
wayland.windowManager.hyprland.settings.decoration."col.shadow" = "rgba(${config.lib.stylix.colors.base01}E5)";
which currently requires the use oflib.mkForce
and looks ugly.So if we lower the priority of the Stylix options, the end user of stylix can more easily customize their theme without having to think of
lib.mkForce
(and build twice :P) to override the stylix options.Is it ready for merging, or does it need work?
Yes, i have tested the first three commits, but if this gets accepted i would like to look over the other moules stylix currently has and apply
lib.mkDefault
where it makes sense.