11.stylix/modules/bat/hm.nix
Daniel Thwaites d14076e46f
Update flake inputs ⬆️
2023-07-14 12:50:08 +01:00

17 lines
451 B
Nix

{ pkgs, config, lib, ... }:
let
themeFile = config.lib.stylix.colors {
template = ./base16-stylix.mustache;
extension = ".tmTheme";
};
in
{
options.stylix.targets.bat.enable =
config.lib.stylix.mkEnableTarget "Bat" config.programs.bat.enable;
config = lib.mkIf config.stylix.targets.bat.enable {
programs.bat.themes."base16-stylix" = builtins.readFile themeFile;
home.sessionVariables.BAT_THEME = "base16-stylix";
};
}