home-manager/bat.nix

14 lines
160 B
Nix
Raw Normal View History

2024-07-10 06:17:30 +00:00
{ theme, ... }:
2024-07-10 06:10:56 +00:00
let
2024-07-10 06:17:30 +00:00
theme_name = "Solarized (${theme})";
2024-07-10 06:10:56 +00:00
in
{
programs = {
bat = {
enable = true;
config.theme = theme_name;
};
};
}