Link: https://github.com/nix-community/stylix/pull/1362 Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
12 lines
281 B
Nix
12 lines
281 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "micro";
|
|
humanName = "micro";
|
|
|
|
configElements = {
|
|
# TODO: Provide a real colorscheme once [1] is resolved.
|
|
#
|
|
# [1]: https://github.com/nix-community/stylix/issues/249
|
|
programs.micro.settings.colorscheme = "simple";
|
|
};
|
|
}
|