nix-conf/modules/home-manager/bat/default.nix

18 lines
245 B
Nix
Raw Normal View History

2024-04-11 12:54:08 +00:00
{
config,
lib,
...
}: {
options = {
bat.enable = lib.mkEnableOption "enable bat";
};
config = lib.mkIf config.bat.enable {
programs.bat = {
enable = true;
config = {
theme = "ansi";
};
};
};
}