System/home-manager/bat.nix

21 lines
362 B
Nix
Raw Normal View History

2022-06-10 17:26:12 -04:00
{ config, lib, pkgs, ... }:
{
2022-06-17 18:38:11 -04:00
options.nathans-home.bat = with lib; {
enable = mkOption {
type = types.bool;
default = true;
};
};
config = lib.mkIf config.nathans-home.bat.enable {
programs.bat = {
enable = true;
config = {
theme = "zenburn";
style = "header,rule,snip,changes";
};
2022-06-10 17:26:12 -04:00
};
};
}