stylix/modules/bat/hm.nix

15 lines
411 B
Nix
Raw Normal View History

2023-03-14 16:21:51 +01:00
{ 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 {
2023-10-10 05:46:25 -04:00
programs.bat.themes."base16-stylix".src = config.lib.stylix.colors {
template = ./base16-stylix.mustache;
extension = ".tmTheme";
};
2023-03-14 16:21:51 +01:00
home.sessionVariables.BAT_THEME = "base16-stylix";
};
}