mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 06:04:42 +00:00
13 lines
197 B
Nix
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;
|
|
};
|
|
};
|
|
}
|