stylix/modules/bat/hm.nix

20 lines
535 B
Nix
Raw Normal View History

2024-12-24 16:04:27 +01:00
{ config, lib, ... }:
{
options.stylix.targets.bat.enable =
config.lib.stylix.mkEnableTarget "Bat" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.bat.enable) {
programs.bat = {
# This theme is reused for yazi. Changes to the template
# will need to be applied to modules/yazi/hm.nix
themes."base16-stylix".src = config.lib.stylix.colors {
template = ./base16-stylix.mustache;
extension = ".tmTheme";
};
config.theme = "base16-stylix";
};
};
}