nix-stuff/roles/common/programs/bat.nix

18 lines
280 B
Nix

{ config, pkgs, ... }:
{
home-manager = {
users.toast.programs.bat = {
enable = true;
config = {
theme = "catppuccin-mocha";
};
themes = {
catppuccin-mocha = {
src = pkgs.catppuccin;
file = "bat/Catppuccin-mocha.tmTheme";
};
};
};
};
}