1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

add bat configurationo

This commit is contained in:
andrey_varnavskiy
2024-12-19 19:45:32 +05:00
parent d6cddd0f84
commit 39e9e709e6
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, ... }: {
programs.bat = {
enable = true;
themes = {
dracula = {
src = pkgs.fetchFromGitHub {
owner = "Briles";
repo = "gruvbox";
rev = "75407cc80c51814d61beb1df07e380d6f58ad767";
sha256 = "186rhbljw80psf1l8hyj02ycz1wzxv4rxmbrqr8yvi30165drpay";
};
file = "gruvbox (Dark) (Medium).sublime-color-scheme";
};
};
};
}