mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 20:20:43 +02:00
25 lines
466 B
Nix
25 lines
466 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.bat = {
|
|
enable = true;
|
|
|
|
config = {
|
|
theme = "cattpuccin-mocha";
|
|
};
|
|
|
|
themes = {
|
|
catppuccin-mocha = {
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = "bat";
|
|
rev = "6810349b28055dce54076712fc05fc68da4b8ec0";
|
|
hash = "sha256-lJapSgRVENTrbmpVyn+UQabC9fpV1G1e+CdlJ090uvg=";
|
|
|
|
};
|
|
file = "themes/Catppuccin Mocha.tmTheme";
|
|
};
|
|
};
|
|
};
|
|
}
|