Initialize the micro module. Extending the 'simple' theme is possible by adding 'include "simple"' to the user configuration. [1] [1]: https://github.com/danth/stylix/issues/714#issuecomment-2569808086 Closes: https://github.com/danth/stylix/issues/714 Link: https://github.com/danth/stylix/pull/716 Approved-by: https://github.com/LemmusLemmus Approved-by: https://github.com/matkijahenkilo
18 lines
407 B
Nix
18 lines
407 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.stylix.targets.micro.enable =
|
|
config.lib.stylix.mkEnableTarget "micro" true;
|
|
|
|
config =
|
|
lib.mkIf
|
|
(config.stylix.enable && config.stylix.targets.micro.enable)
|
|
{
|
|
# TODO: Provide a real colorscheme once [1] is resolved.
|
|
#
|
|
# [1]: https://github.com/danth/stylix/issues/249
|
|
programs.micro.settings.colorscheme = "simple";
|
|
};
|
|
}
|