21 lines
387 B
Nix
21 lines
387 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
themeName = if config.system.nixos.release == "23.11" then "Catppuccin-mocha" else "Catppuccin Mocha";
|
|
in
|
|
{
|
|
home-manager = {
|
|
users.toast.programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
theme = "catppuccin-mocha";
|
|
};
|
|
themes = {
|
|
catppuccin-mocha = {
|
|
src = pkgs.catppuccin;
|
|
file = "bat/${themeName}.tmTheme";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|