This commit is contained in:
Harivansh Rathi 2026-03-30 21:13:10 -04:00
parent f38c272269
commit 1dc4ed5f1a
20 changed files with 349 additions and 112 deletions

View file

@ -1,10 +1,13 @@
{ ... }:
{ config, ... }:
let
theme = import ../lib/theme.nix { inherit config; };
in
{
programs.bat = {
enable = true;
config = {
theme = "gruvbox-dark";
theme = theme.batTheme theme.defaultMode;
};
};
}