27 lines
616 B
Nix
27 lines
616 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
# Home manager on 23.05 doesn't understand the new format, so I'll use the old one until 23.11 becomes stable
|
|
newformat = {
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = "bat";
|
|
rev = "master";
|
|
hash = "sha256-6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw=";
|
|
};
|
|
file = "Catppuccin-mocha.tmTheme";
|
|
};
|
|
oldformat = builtins.readFile (newformat.src + "/${newformat.file}");
|
|
in
|
|
{
|
|
home-manager = {
|
|
users.toast.programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
theme = "catppuccin-mocha";
|
|
};
|
|
themes = {
|
|
catppuccin-mocha = oldformat;
|
|
};
|
|
};
|
|
};
|
|
}
|