From 2438569ab188c9dbc02a2f36c9f399de12a7fe63 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 8 Oct 2025 18:01:02 -0500 Subject: [PATCH] feat: added bat --- modules/home/cli/utilities/bat/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/home/cli/utilities/bat/default.nix diff --git a/modules/home/cli/utilities/bat/default.nix b/modules/home/cli/utilities/bat/default.nix new file mode 100644 index 0000000..2dbf995 --- /dev/null +++ b/modules/home/cli/utilities/bat/default.nix @@ -0,0 +1,17 @@ +{ pkgs, ... }: +{ + programs.bat = { + enable = true; + themes = { + catppuccin = { + src = pkgs.fetchFromGitHub { + owner = "catppuccin"; + repo = "bat"; + rev = "6810349b28055dce54076712fc05fc68da4b8ec0"; + sha256 = "lJapSgRVENTrbmpVyn+UQabC9fpV1G1e+CdlJ090uvg="; + }; + file = "themes/Catppuccin Mocha.tmTheme"; + }; + }; + }; +}