11.stylix/modules/bat/hm.nix
2024-03-11 21:41:22 +00:00

16 lines
526 B
Nix

{ pkgs, config, lib, ... }:
{
options.stylix.targets.bat.enable =
config.lib.stylix.mkEnableTarget "Bat" config.programs.bat.enable;
config = lib.mkIf config.stylix.targets.bat.enable {
# This theme is reused for yazi. Changes to the template
# will need to be applied to modules/yazi/hm.nix
programs.bat.themes."base16-stylix".src = config.lib.stylix.colors {
template = ./base16-stylix.mustache;
extension = ".tmTheme";
};
home.sessionVariables.BAT_THEME = "base16-stylix";
};
}