Skip to content

Commit

Permalink
micro: init
Browse files Browse the repository at this point in the history
  • Loading branch information
trueNAHO committed Jan 1, 2025
1 parent f48cab3 commit fc7054c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions modules/micro/hm.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
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
program.micro.settings.colorscheme = "simple";
};
}

0 comments on commit fc7054c

Please sign in to comment.