1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
2024-12-19 19:45:32 +05:00

17 lines
413 B
Nix

{ 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";
};
};
};
}