11.stylix/modules/micro/hm.nix
awwpotato 7ffb31da69
treewide: use mkTarget (batch 2) (#1362)
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>
2025-05-23 19:23:39 +02:00

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";
};
}