nix/home/bat.nix
2026-03-30 21:13:10 -04:00

13 lines
197 B
Nix

{ config, ... }:
let
theme = import ../lib/theme.nix { inherit config; };
in
{
programs.bat = {
enable = true;
config = {
theme = theme.batTheme theme.defaultMode;
};
};
}