System/home-manager/bat.nix

12 lines
165 B
Nix

{ config, lib, pkgs, ... }:
{
programs.bat = {
enable = true;
config = {
theme = "zenburn";
style = "header,rule,snip,changes";
};
};
}