11.stylix/modules/micro/hm.nix
NAHO 16df6b8448
treewide: rename mkTarget's configElements and extraOptions options
Rename mkTarget's 'configElements' argument to 'config' and
'extraOptions' to 'options' to provide a more transparent interface with
the underlying Nixpkgs module system.
2025-12-10 14:48:20 +01:00

12 lines
273 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "micro";
humanName = "micro";
config = {
# TODO: Provide a real colorscheme once [1] is resolved.
#
# [1]: https://github.com/nix-community/stylix/issues/249
programs.micro.settings.colorscheme = "simple";
};
}